How can I parsed a string comma-delimited string from a column in Oracle database and use each one as join to another table
example:
Table 1 Table 2
ID Name ID Rate
--- ------ ---- ------
1,2,3 FISRT 1 90
2 80
3 70
Would like to extract each ID from Table 1 to join in Table 2, something like
extract(tbl1.ID, i) = tbl2.ID
Thanks in advance.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…