I've been searching for a while and I'm not sure if this is allowed in mysql.
I know this is allowed in mysql
Insert into 'table' (column1, column2, column3) Select val1, val2, val3 From sometable
Also this
Insert into 'table' (column1, column2, column3) Values (val1, val2, val3), (val1, val2, val3)
I am not sure if this is allowed though:
Insert into 'table' (column1, column2, column3) Select val1, val2, val3 From sometable, Select val1, val2, val3 From sometable
Obviously that gave me an error, is that allowed in mysql?
select .... UNION ALL select ...just a hunch, never tried it