mysql 创建用户数据库及授权
create user 'pharmacy'@'%' identified by 'pharmacy123';
create database pharmacy;
grant all privileges on pharmacy.* to pharmacy;
复制代码
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
mysql 创建用户数据库及授权
create user 'pharmacy'@'%' identified by 'pharmacy123';
create database pharmacy;
grant all privileges on pharmacy.* to pharmacy;
复制代码