摘要:
http://yanue.net/post-97.html GRANT语句的语法: mysql> grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址 identified by "连接口令"; 看上去像这样: GRANT privileges (columns) ON what TO user IDENTIFIED BY "password" WITH ... 阅读全文
摘要:
http://yanue.net/post-96.html MySQL查看用户权限命令的两方法: 一. 使用MySQL grants MySQL grant详细用法见:http://yanue.net/post-97.html使用方法: mysql> show grants for username@localhost; 实例: mysql> show grants for root@... 阅读全文