i would like to know how mysql interprets the create table syntax:
if i write:
create table tbl1 (
`v1` int,
`v2` int
constraint idx primary key (v1)
)
select a, b from tbl2;
does it determine which value goes into v1 and which goes into v2 by their order in the select statement? does it use the names i designate in the create table statement or does it take them from the select statement? i have used the create table XX select val from YY before but would like to know more specifically about the above syntax.