SQL Server 中Select into復制數據到新表
作者:數據超酷
本篇帶給大家在SQL Server中使用 select into 可以創建一張新表的同時將原有表數據追加到新表中的相關知識。希望能夠幫助到你!
在SQL Server中使用 select into 可以創建一張新表的同時將原有表數據追加到新表中,現在創建一張測試表,里面存放各城市大學名稱:
- create table [dbo].[school](
- [id] [bigint] identity(1,1) not null,
- [name] [varchar](50) not null,
- [cityid] [bigint] not null,
- constraint [school_primary] primary key clustered
- [id] asc
- )
為測試表創建以cityid為索引列的非聚集索引:
- create nonclustered index [index_school_cityid] on [dbo].[school] ([cityid] asc)
追加數據后,查看該表的數據:
- select * from school
現在使用 select into 復制一張新表school_test:
- select * into school_test from school
查看新表school_test的數據,和原有表schoo相同:
- select * from school_test
再來看看新表的結構,發現id的自增屬性被復制了:
而其他的屬性,如原表的主鍵和索引卻沒有被復制到新表:
說明使用select into 可以復制原表的數據、字段和自增屬性,而主鍵和索引等卻無法被復制。
責任編輯:姜華
來源:
今日頭條