I found the post which has the column with 3 values seperated by commas. I will have more than 3 values seperated by commas . For example,
ID CITY_ID
--------------
1 12,18,16,17,35
2 12,16
....
--------------
Is it possible to split string city_id and make it into rows using mysql query like below
ID CITY_ID
-------------
1 12
1 18
1 16
....
2 16
....
--------------
If yes, Kindly give some advice ....