Mysql常用命令

Jason 1年前 ⋅ 344 阅读

新增用户

CREATE USER `<username>`@`<ip>` IDENTIFIED BY '<password>';

添加权限

GRANT ALL ON <database>.<table> TO `<username>`@`<ip>`;