Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 233 Bytes

Mysql生存指南.md

File metadata and controls

15 lines (9 loc) · 233 Bytes

赋予权限

  1. MySQL 8.0 之后
grant all privileges on *.* to universe_op@'%' with grant option;

  1. MySQL 8.0 之前
GRANT ALL PRIVILEGES ON *.* TO 'universe_op'@'%' IDENTIFIED BY '123'  WITH GRANT OPTION;