if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Ovanstående skapar en tabell som heter cars
om tabellen inte redan finns.
if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Ovanstående skapar en tabell som heter cars
om tabellen inte redan finns.