-
-
Save lenriqueotero/7cd399d421f3ae33150495777d647933 to your computer and use it in GitHub Desktop.
check if table exists sql server
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
USE [DB_NAME] | |
GO | |
SELECT OBJECT_ID(N'[Shema].[Table]', N'U') | |
GO |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment