Answers for "Duplicating a MySQL table with all the data Command"

SQL
1

Duplicating a MySQL table with all the data Command

CREATE TABLE `new_table` (id INT(11) auto_increment primary key) SELECT old_table.name, old_table.group, old_table.floor, old_table.age from old_table;
Posted by: Guest on May-04-2021

Code answers related to "Duplicating a MySQL table with all the data Command"

Code answers related to "SQL"

Browse Popular Code Answers by Language