Skip to content

Instantly share code, notes, and snippets.

@gdoddsy
Last active October 13, 2018 03:23
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 gdoddsy/00e0d7ecafd8022149d0471053296b5d to your computer and use it in GitHub Desktop.
Save gdoddsy/00e0d7ecafd8022149d0471053296b5d to your computer and use it in GitHub Desktop.
use tempdb
GO
CREATE TABLE dbo.Test1
(
Col1 VARCHAR(6) NOT NULL PRIMARY KEY
)
GO
INSERT INTO Test1 (Col1) VALUES ('String'), ('Long String')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment