--登录
mysql --default-character-set=utf8 -uroot -proot
--导入sql文件
source 路径/***.sql

--授权
grant all privileges on *.* to 'test'@'%' identified by 'test' with grant option;
--授权
grant all on *.* to 'test'@'%' with grant option;
--授权
grant all privileges on *.* to 'test'@'%';
 



 

相关文章:

  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-16
猜你喜欢
  • 2021-12-03
  • 2022-02-03
  • 2022-12-23
  • 2022-12-23
  • 2021-11-11
  • 2021-05-16
  • 2021-07-26
相关资源
相似解决方案