Table_a
column name: list_id
record 1: 1,2,5,6,8
record 2: 1,3,2
record 3: 6,7,2
record 4: 9,8,0
Table_b
id ='2';
How to select records that have id='2'
in the comma separated string? From the above example it should return record 1,2 and 3.
Query(How to amend this query, please?):
SELECT * FROM Table_a,Table_b WHERE Table_b.id = Table_a.list_id;