Skip to content

Instantly share code, notes, and snippets.

@kappa7194
Created May 14, 2013 06:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kappa7194/5574037 to your computer and use it in GitHub Desktop.
Save kappa7194/5574037 to your computer and use it in GitHub Desktop.
CREATE TABLE [dbo].[MyTable]
(
[MyColumn] INT NOT NULL PRIMARY KEY
)
GO
INSERT INTO [dbo].[MyTable] ([MyColumn]) VALUES (1)
INSERT INTO [dbo].[MyTable] ([MyColumn]) VALUES (2)
INSERT INTO [dbo].[MyTable] ([MyColumn]) VALUES (3)
INSERT INTO [dbo].[MyTable] ([MyColumn]) VALUES (4)
INSERT INTO [dbo].[MyTable] ([MyColumn]) VALUES (5)
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment