Last active
November 9, 2017 16:51
-
-
Save mikaelweave/64d8f4d6e84ac4b0575a to your computer and use it in GitHub Desktop.
Drops a temporary (temp) SQL table if it exists #sql
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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