mysql 常用sql语句

Posted 软件全栈

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql 常用sql语句相关的知识,希望对你有一定的参考价值。

  • 权限
  1. 撤销权限
    revoke all on *.* from ‘root‘@‘192.168.0.197‘ ;

  2. 撤销权限
    revoke all on *.* from ‘xx_db‘ @‘%‘;
  3. 给指定用户赋予指定数据库select的权限

    grant select ON xx_db TO ‘user_xx‘ @‘%‘ IDENTIFIED BY "password";
    给指定用户赋予指定数据库所有的权限
    grant all privileges on xx_db.* to ‘user_xxb‘ @‘%‘ identified by "password";
    给所有用户赋予指定数据库所有权限
    grant select on *.* to ‘xx_db‘ @‘%‘ identified by "password";
    给所有用户赋予所有权限(远程访问,不限制在本机访问)
    grant all privileges on *.* to ‘user_xx‘ @‘%‘ identified by "password";
    赋予grant的权限
    grant all privileges on *.* to ‘user_xx‘ @‘%‘ WITH GRANT OPTION

    给指定用户赋予所有数据库的权限
    grant select on xx_db to ‘user_xx‘ @‘%‘ identified by "password";

     

 

以上是关于mysql 常用sql语句的主要内容,如果未能解决你的问题,请参考以下文章

Mysql 常用 SQL 语句集锦

mysql常用sql语句

MySQL常用SQL语句之SHOW语句详解

MySQL的最全常用SQL语句 —— 一文可以快速熟悉回忆sql语句

Mysql常用sql语句(20)- 子查询重点知识

Mysql常用sql语句(20)- 子查询重点知识