Answers for "Write a query to create an empty table from an existing table?"

SQL
0

Write a query to create an empty table from an existing table?

CREATE TABLE new_table
  AS (SELECT *
      FROM old_table WHERE 1=2);
Posted by: Guest on May-12-2021

Code answers related to "Write a query to create an empty table from an existing table?"

Code answers related to "SQL"

Browse Popular Code Answers by Language