摘要: a. show tables或show tables from database_name; // 显示当前数据库中所有表的名称 b. show databases; // 显示mysql中所有数据库的名称 c. show columns from table_name from database_name; 或show columns from database_name.table_name; // 显示表中列名称 d. show grants for user_name@localhost; // 显示一个用户的权限,显示结果类似于grant 命令 e. show inde... 阅读全文
posted @ 2013-10-29 16:57 小名辉辉 阅读(201) 评论(0) 推荐(0) 编辑