mysql常用操作

一.创建用户

  • 执行任何IP的yuhaohao用户登录
    create user 'yuhaohao'@'%' identified by '123456';

  • 执行指定IP的yuhaohao用户登录
    create user 'yuhaohao'@'192.118.1.1' identified by '123456';

二.用户数据库权限操作

  • yuhaohao用户对所有数据库中文件有任何操作
    grant all privileges on . to "yuhaohao"@'%';

表示有所有的权限,除了grant这个命令,这个命令是root才有的。yuhaohao用户对test下的table1文件任意操作权限

grant all privileges on test.table1 to "yuhaohao"@'%';

yuhaohao用户对test数据库中的文件执行任何操作

grant all privileges on test.* to "yuhaohao"@'%';

上一篇:mysql版本:'for the right syntax to use near 'identified by 'password' with grant


下一篇:MySQL之实践篇(七)