码迷,mamicode.com
首页 > 数据库 > 详细

显示MYSQL数据库信息

时间:2015-09-30 18:10:39      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:

显示所有的数据库:
show databases 

显示一个数据库所有表用:
show tables from DatabaseName

SELECT table_name FROM information_schema.tables WHERE table_schema=‘DatabaseName‘ AND table_type=‘base table‘;

显示一个数据库中的所有视图:

 show table status from DatabaseName where comment=‘view‘;
select * from information_schema.tables where table_schema=‘yourDatabaseName‘ and table_type=‘view‘;

 

显示MYSQL数据库信息

标签:

原文地址:http://www.cnblogs.com/hushaojun/p/4849677.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!