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;
use find_in_set function, but it is not optimized way you should normalize your data.
SELECT * FROM
Table_a AS a
JOIN Table_b AS b ON FIND_IN_SET(b.id,a.list_id)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With