MySQL查询一个数据库里面有多少张表

版权声明:本文为HCG原创文章,未经博主允许不得转载。请联系[email protected] https://blog.csdn.net/qq_39455116/article/details/84970537
6. MySQL查询一个数据库里面有多少张表
XXX是你的数据库名称
SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES  
WHERE table_schema = 'XXX' GROUP BY table_schema;
7. sh权限不足的情况
chmod u+x *.sh 

猜你喜欢

转载自blog.csdn.net/qq_39455116/article/details/84970537
今日推荐