欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

mysq创建用户并分配到某个数据库上_MySQL

程序员文章站 2024-01-21 11:21:04
...
bitsCN.com


mysq创建用户并分配到某个数据库上

Sql代码

create user 'kent'@'%' identified by 'kentpassword';

create user 'kent'@'localhost' identified by 'kentpassword';

grant all privileges on kentdb.* to 'kent'@'%' with grant option;

grant all privileges on kentdb.* to 'kent'@'localhost' with grant option;

bitsCN.com
相关标签: 数据库 用户