Answers for "mysql duplicate table strcuture"

SQL
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 "mysql duplicate table strcuture"

Code answers related to "SQL"

Browse Popular Code Answers by Language