sql語句復制表 sql server復制表數據



文章插圖
sql語句復制表 sql server復制表數據

文章插圖
在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的自增屬性被復制了:
而其他的屬性,如原表的主鍵和索引卻沒有被復制到新表:
【sql語句復制表 sql server復制表數據】說明使用select into 可以復制原表的數據、字段和自增屬性,而主鍵和索引等卻無法被復制 。