首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

查看数据库中是不是存在某张表

2012-09-19 
查看数据库中是否存在某张表select count(*) from information_schema.tables where table_schema 数据

查看数据库中是否存在某张表
select count(*) from information_schema.tables where table_schema = '数据库名' and table_name = '表名';

热点排行