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

mysql授权某数据库 允许某用户远程连接

程序员文章站 2024-02-03 08:34:58
...

无详细内容 无 grant all privileges on *.* to 'userName'@'%' identified by 'password' WITH GRANT OPTION;FLUSH PRIVILEGES;/**on *.* 是 on 数据库.表 @% 是任意的 @ip 可以具体某个ip**/

grant all privileges on *.* to 'userName'@'%' identified by 'password' WITH GRANT OPTION;
FLUSH   PRIVILEGES;
/**
on *.*  是  on 数据库.表   @% 是任意的 @ip 可以具体某个ip
**/