A table Jobs which have 2 column JobId, City when we save job a job location may be multiple city like below
-----------------------------
JobId City
-------------------------------
1 New York
2 New York , Ohio , Virginia
3 New York , Virginia
how i count jobid in perticular city like i want count of jobid in New York city i want result like
New York 3 Ohio 1 Virginia 2
for getting count of comma separated distinct value run above query but getting correct resulr you should use one more table
**numbers**
which have only one column num integer type and insert some values. if you getting error during GROUP_CONCAT(city separator ',') AS all_city in this condition set a global variable " SET group_concat_max_len = 18446744073709547520; "