数据库
逆溯
这个作者很懒,什么都没留下…
展开
-
MySql 语法
创建用户create user <用户名> identified by '<密码>';删除用户drop user <用户名>;用户权限// 授权grant all on <数据库名>.* to <用户名>@'localhost' identified by '<密码>' with grant option; //授予该用户授权的权限// 撤权revoke all on <数据库名>.* f原创 2020-11-09 15:13:12 · 142 阅读 · 0 评论 -
MySql 1251:Client does not support authentication protocol requested by server
在使用Navicate Premium连接Mysql数据库时出现错误:经过在网上查找资料,发现错误原因是Mysql在8.0版本更新了加密的插件方式,而Navicate还是使用以前的,在连接时无法访问。解决方法将加密方式修改为以前的加密方式:mysql> ALTER USER 'UserName'@'localhost' IDENTIFIED WITH mysql_native_password BY 'YourPassword';mysql> Flush PRIVILEGES; /原创 2020-11-05 11:05:08 · 90 阅读 · 0 评论