I can't find this on Google. I want to insert into one table the combined information from two columns from a different table. I tried it with the following query, but no luck. What mistake did I make, and is there a better way? How can I make a query like this work?
INSERT INTO newsitem ('id', 'title', 'body')
VALUES (10, 'Hello world', GROUP_CONCAT(select date, body FROM blog);
Note: Value names have been changed to protect the innocent.
Try this:
Your use of
GROUP_CONCAT
is incorrect, it works inside aSELECT
query. You may go through the complete INSERT ... SELECT syntax.