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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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);