if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
O acima criará uma tabela chamada
cars
se a tabela ainda não existir. if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
cars
se a tabela ainda não existir.