Answers for "sql-server 2019 tsql if table exists "else""

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

Code answers related to "sql-server 2019 tsql if table exists "else""

Code answers related to "SQL"

Browse Popular Code Answers by Language