Skip to content

Instantly share code, notes, and snippets.

@mikaelweave
Last active November 9, 2017 16:51
Show Gist options
  • Save mikaelweave/64d8f4d6e84ac4b0575a to your computer and use it in GitHub Desktop.
Save mikaelweave/64d8f4d6e84ac4b0575a to your computer and use it in GitHub Desktop.
Drops a temporary (temp) SQL table if it exists #sql
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
IF OBJECT_ID('tempdb..#Results') IS NOT NULL DROP TABLE #Results
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment