This Command is used to create new table with the structure and data of an existing table.
Existing Table name : users
New Table name : users_Mon
CREATE TABLE users_Mon LIKE
users
; INSERT
users_Mon
SELECT * FROM
users
;
users
; INSERT users_Mon
SELECT * FROM users
;
No comments:
Post a Comment