Answered by KBenson
: Nov 19 2009 01:04 PM
In MySQL you can use the result of a select for the values of an insert.
mysql> create table t1 ( one int, two int, three char(10));
Query OK, 0 rows affected (0.09 sec)
mysql> create table t...
full answer >