CREATE TABLE IF NOT EXISTS等价于SQL Server
可能重复:
SQL Server:检查表是否存在
 CREATE TABLE IF NOT EXISTS在mysql上工作,但在SQL Server 2008 R2上失败。 什么是等效的语法? 
 if not exists (select * from sysobjects where name='cars' and xtype='U') create table cars ( Name varchar(64) not null ) go 
 如果表格不存在,上面将创build一个名为cars的表格。