Skip to content

Instantly share code, notes, and snippets.

@tdmitch
Created June 16, 2020 23:24
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 tdmitch/cc4ea8e0b5eb7f32c216a20f4a7bf6a7 to your computer and use it in GitHub Desktop.
Save tdmitch/cc4ea8e0b5eb7f32c216a20f4a7bf6a7 to your computer and use it in GitHub Desktop.
CREATE TABLE #idtest
(
theID INT IDENTITY(1,1)
, theValue VARCHAR(20) NULL
)
INSERT #idtest
VALUES ('Plane')
, ('Train')
, ('Automobile')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment