一、查看所有数据库:show databases;
二、查看当前数据库的所有表:show tables; 或者:show table status; 或者:select * from information_schema.tables;
三、查看所有的存贮过程:select * from MySQL.proc where db='db_name' and type='PROCEDURE'; 或者:show procedure status;
四、查看所有的函数:select * from MySQL.proc where db='db_name' and type='FUNCTION'; 或者:show function status;
五、查看存贮过程的源码:show create procedure proc_name;
六、查看函数的源码:show create function func_name;
七、查看所有视图:select * from information_schema.views;
八、查看所有触发器:show triggers [from db_name] [like 'expr']; 或者:select * from information_schema.triggers;
九、查看表结构:desc tbl_name;
以上的相关内容就是对MySQL 5 易忘的命令的介绍,望你能有所收获。
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。