if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Výše uvedené vytvoří tabulku nazvanou cars
pokud tabulka již neexistuje.
if not exists (select * from sysobjects where name='cars' and xtype='U')
create table cars (
Name varchar(64) not null
)
go
Výše uvedené vytvoří tabulku nazvanou cars
pokud tabulka již neexistuje.