丹调生活 发表于 2017-7-14 13:33:10

SQL Server查询结果插入表

  a) 插入新表
  select *
  into newtable
  from table
  b) 插入已经存在的表
  insert into table
  select * from table2 where...
页: [1]
查看完整版本: SQL Server查询结果插入表