相當於SQL Server 中的CREATE TABLE IF NOT EXISTS
MySQL 指令它還不用存在。此語法與 SQL Server 不直接相容。
SQL Server 中的替代語法
要在SQL Server 中實現相同的功能,可以使用使用條件查詢的替代語法受僱:
if not exists (select * from sysobjects where name='cars' and xtype='U') create table cars ( Name varchar(64) not null ) go
在此程式碼中:
附加註意
以上是SQL Server中如何僅建立不存在的表?的詳細內容。更多資訊請關注PHP中文網其他相關文章!