相关文章推荐
注册/登录

SQL Server 中Select into复制数据到新表

数据库 SQL Server
本篇带给大家在SQL Server中使用 select into 可以创建一张新表的同时将原有表数据追加到新表中的相关知识。希望能够帮助到你!

[[396980]]

在SQL Server中使用 select into 可以创建一张新表的同时将原有表数据追加到新表中,现在创建一张测试表,里面存放各城市大学名称:

  1. create table [dbo].[school]( 
  2. [id] [bigint] identity(1,1) not null
  3. [name] [varchar](50) not null
  4. [cityid] [bigintnot null
  5. constraint [school_primary] primary key clustered  
  6.  
  7. [id] asc 
  8.  ) 

为测试表创建以cityid为索引列的非聚集索引:

  1. create nonclustered index [index_school_cityid] on [dbo].[school] ([cityid] asc

追加数据后,查看该表的数据:

  1. select * from school 

现在使用 select into 复制一张新表school_test:

  1. select * into school_test from school 

查看新表school_test的数据,和原有表schoo相同:

  1. select * from school_test 

再来看看新表的结构,发现id的自增属性被复制了:

而其他的属性,如原表的主键和索引却没有被复制到新表:

说明使用select into 可以复制原表的数据、字段和自增属性,而主键和索引等却无法被复制。

责任编辑:姜华 今日头条
点赞
收藏
 
推荐文章