How to insert rows with structure from one table to another table?

后端 未结 3 537
耶瑟儿~
耶瑟儿~ 2021-01-29 02:00

What is the query in SQL Server to insert rows with structure from one table to another table?

3条回答
  •  执念已碎
    2021-01-29 02:25

    A couple ways

    SELECT INTO

    SELECT 
       field1,
       field2,
       ...
    INTO Table1
    FROM Table2
    

    INSERT INTO

    INSERT INTO Table1
       field1,
       field2,
       ...
    SELECT
       field1,
       field2,
       ...
    FROM Table2
    

提交回复
热议问题