MySQL select into
The syntax for MySQL's SELECT INTO is in reverse:
INSERT INTO table (field) SELECT s.key FROM other_table s;
Good for making up temp tables.
The syntax for MySQL's SELECT INTO is in reverse:
INSERT INTO table (field) SELECT s.key FROM other_table s;
Good for making up temp tables.