Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to query comma separated string?

Tags:

php

mysql

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;
like image 700
112233 Avatar asked Mar 31 '16 07:03

112233


1 Answers

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)
like image 155
Zafar Malik Avatar answered Oct 15 '22 11:10

Zafar Malik