write a query to create an empty table from an existing table 3f

Solutions on MaxInterview for write a query to create an empty table from an existing table 3f by the best coders in the world

showing results for - "write a query to create an empty table from an existing table 3f"
Claudio
14 Jul 2018
1CREATE TABLE new_table
2  AS (SELECT *
3      FROM old_table WHERE 1=2);