Hello,
I was migrating a field to a new table. The new table has three fields. What I tried was
INSERT INTO foo VALUES ('', (SELECT bar FROM baz GROUP BY bar), '');
This resulted in an error due to multiple rows resulting from the select.
What is the right way to do this?
TIA
jg