SQL Server如何将查询的内容保存到新的sql 表中
Posted 老张哈哈哈
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了SQL Server如何将查询的内容保存到新的sql 表中相关的知识,希望对你有一定的参考价值。
我是采用语句将 查询后的数据保存到一个新表中
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 表中的主要内容,如果未能解决你的问题,请参考以下文章
sql server 数据库中,2000W行的表数据添加到新表中,新表多几个字段
迁移到新的 SQL Server 后,在 MS Access 中更新链接表的最佳方法是啥?