在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,则表示表不存在。