if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Quanto sopra creerà una tabella chiamata cars
se la tabella non esiste già.
if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Quanto sopra creerà una tabella chiamata cars
se la tabella non esiste già.