1. 程式人生 > >【SQL Server】將查詢結果插入到另一個表

【SQL Server】將查詢結果插入到另一個表

  1. 查詢結果插入新表
    select * into tableA from tableB where …

  2. 查詢結果插入已經存在的表
    insert into tableA
    select * from tableB where…

  3. 查詢結果跨資料庫
    insert into schemaA.tableA
    select * from schemaB.tableB where…

  4. 查詢結果加上新欄位插入已經存在的表
    insert into tableA
    select *,NULL from tableB where…

歡迎關注微信公眾號:516資料工作室
516資料工作室