How to create new table which structure should be same as another table
I tried
CREATE TABLE dom AS SELECT * FROM dom1 WHERE 1=2
bu
FOR MYSQL:
You can use:
CREATE TABLE foo LIKE bar;
Documentation here.