
复制-- Create a test table. CREATE TABLE TestIdentityGaps ( ID int IDENTITY PRIMARY KEY,标识
Description varchar(20) ) GO -- Insert some values. The word INTO is optional: INSERT [INTO] TestIdentityGaps (Description) VALUES (One) INSERT [INTO] TestIdentityGaps (Description) VALUES (Two) INSERT [INTO] TestIdentityGaps (Description) VALUES (Three) INSERT [INTO] TestIdentityGaps (Description) VALUES (Four) INSERT [INTO] TestIdentityGaps (Description) VALUES (Five) INSERT [INTO] TestIdentityGaps (Description) VALUES (Six) GO 1.2.3.4.5.6.7.8.9.10.11.12.13.14.15.