SQL Server 把查询的数据放入表(临时表、已存在的表、新建的表)中

有时想把查询到的数据放到一个表里(临时表、已存在的表、新建的表),那该如何写呢?

可参考下面的SQL

 1、插入到临时表里面:

-- 把 test_table 的 100 条数据放到临时表 tmp_table 里
select top 100 * into #tmp_table from test_table; 

2、插入到一个不存在的表 (执行以下SQL 语句前,该表是不存在你的数据库里的)

-- 把 表 test_table 的数据放到一个现创的 new_table 里
select * into new_table from  test_table ;

3、插入到一个已经存在的数据表

-- 把 test_01 的数据都放到 test_02 表里
insert into  test_02  
 select  * from  test_01 ;

 

    原文作者:不知缘由
    原文地址: https://blog.csdn.net/Dina_p/article/details/108263308
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞