How to create a new table from existing table in SQL

Created at 16-May-2021 , By samar

How to create a new table from existing table in SQL

With this article, we’ll look at some examples of how to address the "How to create a new table from existing table in SQL" problem.

There are lots of Queries available in SQL to create a new table from another table. You can create a new table structure from an existing table in the database well as you can copy data from the existing table to the new table.
  • Create a new table structure with another table in SQL

    CREATE TABLE new_table
    AS (SELECT * FROM old_table WHERE 1=2);
    

    This SQL query will create a new table with the structure of another table in SQL.  This Query will only create the table structure but do not copy data from another table that you are used to creating the new one.

    It will not copy indexes and keys.

  • Create a new table structure with keys and indexes using another table in SQL

    CREATE TABLE new_table LIKE existing_table;
    

    This SQL query creates a new table structure with keys and indexes from another existing table.

  • Create a new table structure with data from another table in SQL

    CREATE TABLE new_table LIKE existing_table;
    INSERT INTO new_table SELECT * FROM existing_table;
    

    This Query will create a new table structure and insert data in it from the existing table in SQL. The first query (CREATE TABLE new_table LIKE existing_table) is used to create the table structure with keys and indexes. 

    Second query (INSERT INTO new_table SELECT * FROM existing_table;) is used to insert data into the table (newly created table) from the existing table.

Back to code snippet queries related sql

If you like what you are reading, please consider buying us a coffee ( or 2 ) as a token of appreciation.

Buy Me A Coffee

Don't forget to share this article! Help us spread the word by clicking the share button below.

We appreciate your support and are committed to providing you valuable and informative content.

We are thankful for your never ending support.