Answers for "mysql clone table with data and add attribute"

1

mysql clone table with data and add attribute

CREATE TABLE newtable LIKE oldtable; 
INSERT INTO newtable SELECT * FROM oldtable;
Posted by: Guest on July-08-2021

Code answers related to "mysql clone table with data and add attribute"

Browse Popular Code Answers by Language