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

mysql创建用户下令

程序员文章站 2022-04-08 12:06:37
...

mysql创建用户命令 mysql创建用户:需要有root权限的账号 示例:create user coolcloudstat@'%' identified by 'password'; 增加用户权限: grant all privileges on statanalyse.* to coolcloudstat@'%' identified by 'password';

mysql创建用户命令
mysql创建用户:需要有root权限的账号
示例:create user coolcloudstat@'%' identified by 'password';
增加用户权限:
grant all privileges on statanalyse.* to coolcloudstat@'%' identified by 'password';