使用 root 或者其他有权限的账号登录mysql。
如果没有创建,先创建要使用的数据库:
create database `test`;
创建一个新用户并设置密码:
create user 'test'@'localhost' identified by '123456';
赋予用户权限:
grant all on test.* to 'test'@'localhost';
其中all
表示所有权限,test.*
表示test
数据库的所有表。
grant
命令在用户不存在的时候回自动创建,所以可以直接使用grant
创建账号并指定权限:
grant all on test.* to 'test'@'localhost' identified by '123456';
撤销用户权限:
revoke all on test.* from 'test'@'localhost';
本文标签: MySQL
暂无评论,赶紧发表一下你的看法吧。