2023年1月30日
mysql授权备忘
mysql用户授权_YX代码改变世界的博客-CSDN博客_mysql 用户授权
grant all privileges on pbm_liver
.* to ‘usr_pbm’@’%’ identified by ‘pass’ with grant option;
GRANT Insert ON pbm_liver
.* TO usr_pbm
@%
;
flush privileges;