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