CREATE TABLE IF NOT EXISTS equivalent in SQL Server [duplicate]
Olivia Zamora
CREATE TABLE IF NOT EXISTS works on mysql but fails with SQL Server 2008 R2.
What is the equivalent syntax?
1 Answer
if not exists (select * from sysobjects where name='cars' and xtype='U') create table cars ( Name varchar(64) not null )
goThe above will create a table called cars if the table does not already exist.