Creating structure (columns)
from other table:
To get only structure not data use below SQL
CREATE TABLE new_table
AS (SELECT * FROM old_table WHERE 1=2)
AS (SELECT * FROM old_table WHERE 1=2)
If you want data also
CREATE TABLE new_table
AS (SELECT * FROM old_table)
AS (SELECT * FROM old_table)