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
I don't know why you want to do that, but try:
SELECT * INTO NewTable FROM OldTable WHERE 1 = 2
It should work.