需要准备的材料分别是:电脑、sql查询器。
1、首先,打开sql查询器,连接上相应的数据连接,例如test连接。
2、点击“查询”按钮,输入:grant create,select,insert,update,delete,drop,alter on stu.* to stu_admin@"%" identified by "",点击运行按钮。
3、之后点击新建连接,输入刚才新建的用户。
4、之后该用户之后管理test数据库。
grant select,update on app.user to app@‘%’ identified by '123456' --允许通过远程访问grant select,update on app.user to app@‘localhost' identified by '123456' ---这样本地服务器授权。MySQL不像Oracle,它授权的时候要区分是通过远程访问还是本地访问的。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)