Sqlserver
 sql >> Datenbank >  >> RDS >> Sqlserver

CREATE TABLE IF NOT EXISTS-Entsprechung in SQL Server

if not exists (select * from sysobjects where name='cars' and xtype='U')
    create table cars (
        Name varchar(64) not null
    )
go

Das Obige erstellt eine Tabelle namens cars wenn die Tabelle noch nicht existiert.