Answers for "duplication in table in mysql"

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
1

how to duplicate table in mysql

CREATE table `duplicat` LIKE `orginal`;
INSERT `duplicat` SELECT * FROM `orginal`;
Posted by: Guest on June-02-2021

Code answers related to "duplication in table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language