If you're ever scratching your head about a command, do a search for "COMMAND mysql" and the mysql site is usually the first result.
I presume you want something like this...
INSERT INTO table_B (column1,column2) SELECT column1,column2 FROM table_A;
Back up your data first.
|