检测表
-
如何通过MySQL语句检测特定表或桶是否存在?
在MySQL中,可以使用以下语句来判断表是否存在:,,``sql,SELECT * FROM information_schema.tables WHERE table_schema = '数据库名' AND table_name = '表名';,``,,如果查询结果返回至少一行数据,那么表存在。
在MySQL中,可以使用以下语句来判断表是否存在:,,``sql,SELECT * FROM information_schema.tables WHERE table_schema = '数据库名' AND table_name = '表名';,``,,如果查询结果返回至少一行数据,那么表存在。