Answers for "how to create a duplicate table in mysql"

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
0

duplicate row mysql

# Duplicate rows or row
INSERT INTO table (col1, col2, col3)
SELECT col1, col2, col3 FROM table
WHERE something...;
Posted by: Guest on May-20-2021

Code answers related to "how to create a duplicate table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language