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
ако таблицата вече не съществува.