if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
上記はcars
というテーブルを作成します テーブルがまだ存在しない場合。
if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
上記はcars
というテーブルを作成します テーブルがまだ存在しない場合。