Learning Traces...

--Great Love involves great effort
  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2010年1月22日

摘要: 一、查看所有数据库:show databases;二、查看当前数据库的所有表:show tables; 或者:show table status; 或者:select * from information_schema.tables;三、查看所有的存贮过程:select * from mysql.proc where db='db_name' and type='PROCEDURE'; 或者:sh... 阅读全文

posted @ 2010-01-22 15:48 suyang 阅读(441) 评论(0) 推荐(0) 编辑