drop table if exists sql server 2012 code example
Example 1: sql drop table if exists
DROP TABLE IF EXISTS dbo.Customers
Example 2: sql server drop table if exists
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;
DROP TABLE IF EXISTS dbo.Customers
IF OBJECT_ID('dbo.Scores', 'U') IS NOT NULL DROP TABLE dbo.Scores;