溫馨提示×

sql如何檢查表是否存在

sql
小億
591
2024-04-20 10:09:02
欄目: 云計算

在 SQL 中,可以使用以下語句檢查表是否存在:

IF EXISTS (SELECT 1 FROM sys.tables WHERE name = 'table_name')
BEGIN
    PRINT 'Table exists'
END
ELSE
BEGIN
    PRINT 'Table does not exist'
END

其中,table_name 應(yīng)替換為要檢查是否存在的表名。如果表存在,則會輸出 Table exists;如果表不存在,則會輸出 Table does not exist。

0