Tuesday 6 June 2017

Drop Existing Table in SQL Server:

IF OBJECT_ID('dbo.Table_Name', 'U') IS NOT NULL
DROP TABLE Table_Name

No comments:

Post a Comment