千家信息网

创建数据库、业务用户

发表于:2025-11-06 作者:千家信息网编辑
千家信息网最后更新 2025年11月06日,create database xxx character set utf8 collate utf8_bin;grant all privileges on xxx.* to 'xxx'@'%' i
千家信息网最后更新 2025年11月06日创建数据库、业务用户create database xxx character set utf8 collate utf8_bin;
grant all privileges on xxx.* to 'xxx'@'%' identified by 'pass' with grant option;
grant all privileges on xxx.* to 'xxx'@'127.0.0.1' identified by 'pass' with grant option;
grant all privileges on xxx.* to 'xxx'@'localhost' identified by 'pass' with grant option;
grant all privileges on xxx.* to 'xxx'@'hostname' identified by 'pass' with grant option;
grant select on mysql.proc to xxx;
grant show databases on *.* to xxx;

0