首页 > 数据库技术 > 详细

SQL Server如何将查询的内容保存到新的sql 表中

时间:2017-05-24 15:12:36      阅读:460      评论:0      收藏:0      [点我收藏+]

我是采用语句将 查询后的数据保存到一个新表中

1)采用into table 语句,需要保存到的这个新表不需要提前创建

select *into NewTable from Table  --插入新表的语句 into tablename
       


2)采用insert table语句,需要保存到的这个新表不需要提前创建

CREATE TABLE [dbo].[NewTable](
    [fdSequenceID][bigint] not null,
    [fdInnerTime][date] not null,
    [fdTime][date] not null,
    [fdData][float] null,
    [fdState][int] not null,
    [fdUpdateTime][datetime] not null,
    [fdRate] [float] null,
    [fdCreateTime][datetime] not null
)


insert NewTable select * from Table

 

SQL Server如何将查询的内容保存到新的sql 表中

原文:http://www.cnblogs.com/laozhanghahaha/p/6899018.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!