if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Het bovenstaande creëert een tabel met de naam cars
als de tabel nog niet bestaat.
if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Het bovenstaande creëert een tabel met de naam cars
als de tabel nog niet bestaat.