Answers for "check if a table exists sql server"

SQL
5

t-sql test if table exists

IF (EXISTS (SELECT * 
                 FROM INFORMATION_SCHEMA.TABLES 
                 WHERE TABLE_SCHEMA = 'TheSchema' 
                 AND  TABLE_NAME = 'TheTable'))
BEGIN
    --Do Stuff
END
Posted by: Guest on March-05-2020
2

sql server check table exists

IF EXISTS 
  (SELECT object_id FROM sys.tables
  WHERE name = 'Artists'
  AND SCHEMA_NAME(schema_id) = 'dbo')
  PRINT 'The table exists'
ELSE 
  PRINT 'The table does not exist';
Posted by: Guest on July-27-2020

Code answers related to "check if a table exists sql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language