Skip to content

Instantly share code, notes, and snippets.

@ArCiGo
Last active May 19, 2019 21:36
Show Gist options
  • Save ArCiGo/5be370683189eb65988aee3d2c52fae6 to your computer and use it in GitHub Desktop.
Save ArCiGo/5be370683189eb65988aee3d2c52fae6 to your computer and use it in GitHub Desktop.
IF NOT EXISTS(SELECT 1 FROM sys.tables WHERE name = 'table_name')
CREATE TABLE "table_name"(
"column 1" "data type for column 1" [column 1 constraint(s)],
"column 2" "data type for column 2" [column 2 constraint(s)],
...
[table constraint(s)]
);
GO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment