issue with GROUP_CONCAT in JOIN query mysql
问题 I have a join query where I left join 2 tables say tab_sector and tab_sector_subdivisions . I have records in first table which may or may not have corresponding records in 2nd table. I am joining these tables in such a way that Its should return all row from first table and matching row from 2nd table. Also if a row in first table has multiple record in 2nd table, it should return as GROUP_CONCAT(field_name) . But my query doesn't return the way I need. Here is the query without GROUP_CONCAT