d
Amit Dhamu
Software Engineer
Articles
Snippets
Colophon
Projects
Uses
Duplicate Table Into New Table
1 minute read
00000 views
CREATE
TABLE
new_table
LIKE
old_table
;
INSERT
new_table
SELECT
*
FROM
old_table
;
table
duplicate
mysql