MS SQL equivalent to DROP TABLE IF EXIST
When developing an application using MySQL I generally use this syntax:
DROP TABLE IF EXISTS [table_name];
CREATE TABLE [table_name] ( Columns declaration here )
This sql script is useful when I’m about to clear out the data in a table. However in Microsoft SQL (MS SQL) this method will not work.
After I do some searching, I come up with this syntax:
IF EXISTS (SELECT * FROM sysobjects WHERE id = object_id(N'[dbo].[table_name]')
AND OBJECTPROPERTY(id, N'IsUserTable') = 1)
DROP TABLE [dbo].[table_name];
CREATE TABLE [dbo].[table_name] ( Columns declaration here );
The above sql script will be equivalent to MySQL syntax before. Hope this will be helpful 🙂
For sql server 2012 you can use the following.
IF OBJECT_ID(‘Table_Name, ‘U’) IS NOT NULL
DROP TABLE Table_Name
In SQL Server 2016 you can use DROP IF EXISTS:
DROP TABLE IF EXISTS Table_Name
See http://blogs.msdn.com/b/sqlserverstorageengine/archive/2015/11/03/drop-if-exists-new-thing-in-sql-server-2016.aspx