This article is tagged with:
Sql drop table if exists
and mysql
sql drop table if exists
DROP TABLE IF EXISTS dbo.Customers
sql server drop table if exists
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
table drop if exist sql server
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
sql drop table if exists
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL
DROP TABLE dbo.Scores;