Answers for "how to drop a table only if it exists in sql"

SQL
4

sql server drop table if exists

IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
Posted by: Guest on April-22-2020

Code answers related to "how to drop a table only if it exists in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language