Answers for "check if table exists query"

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 "check if table exists query"

Code answers related to "SQL"

Browse Popular Code Answers by Language