在SQL中,可以使用如下的查詢語句來查找表是否存在:
SELECT COUNT(*)
FROM information_schema.tables
WHERE table_schema = 'your_database_name' AND table_name = 'your_table_name';
請將 your_database_name
替換為你要查詢的數據庫名稱,將 your_table_name
替換為你要查詢的表名稱。
如果查詢結果為1,則表示表存在;如果查詢結果為0,則表示表不存在。