在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 可以複製原表的數據、字段和自增屬性,而主鍵和索引等卻無法被複制。
原創文章,作者:投稿專員,如若轉載,請註明出處:https://www.506064.com/zh-hk/n/226504.html
微信掃一掃
支付寶掃一掃