CREATE TABLE IF NOT EXISTS在mysql上有效,但在SQL Server 2008 R2上失败。等效语法是什么?
CREATE TABLE IF NOT EXISTS
if not exists (select * from sysobjects where name='cars' and xtype='U') create table cars ( Name varchar(64) not null ) go
如果该表尚不存在,则上面将创建一个名为cars的表。
cars