I am doing an Inner-Join between two tables to try to create a Group_Concat from the first Table:
SELECT GROUP_CONCAT(concat('!"',LJ.Name1,'"') separator ' ') FROM `Table1` BC Inner Join `Table2` LJ On LJ.Name like concat(BC.Name,' %') and LJ.Field_S=BC.Field_S Where LJ.Type='Person' Group by BC.Field_S,BC.Name` The problem is when I try to make this an Updateas is the purpose MySql does not like the Group By apparently inside an Update.
SqlFiddle seems to be down so I can't make an example until I can find an alternative but in the interim was wondering if there is some "standard" way of converting this kind of Select Inner Join into an Update Inner Join.
Create Table asusing the Select and then doing a simplyInner Joinusing the new table.