当前位置:Gxlcms > 数据库问题 > MySQL - 权限

MySQL - 权限

时间:2021-07-01 10:21:17 帮助过:3人阅读

查看用户当前权限

  show grants;

查看其他 MySQL 用户权限:
  show grants for ‘<username>‘@‘<host>‘;

授权

  grant <privileges> on <databasename.tablename> to ‘<username>‘@‘<host>‘ identified by ‘<123>‘;

  identified by非必须。

撤销权限

  revoke <privileges> on <databasename.tablename> from ‘<username>‘@‘<host>‘;

 

 

privileges:

全部权限:all privileges

其他权限参考:

https://www.cnblogs.com/fslnet/p/3143344.html

http://blog.csdn.net/wulantian/article/details/38230635

MySQL - 权限

标签:权限   nts   查看   class   username   div   blog   grants   art   

人气教程排行