
mysql
mysonghushu
Enjoy your life!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
如何关掉mysql密码限制
用root账号登陆:mysql -h localhost -u root -p卸载插件 uninstall plugin validate_password;其他常用命令。-- 查看系统用户select Host,User,Password from mysql.user;-- 创建一个远程用户 create user test identified by '123456';...原创 2019-10-13 12:20:18 · 597 阅读 · 0 评论 -
MySQL提示ERROR 1698 (28000): Access denied for user 'root'@'localhost'错误解决办法
.登录MySQL$ mysql -u root -p输入密码,如果登录成功下面的就不用看了;如果提示出错,则我们尝试启用安全模式登入MySQL,这样可以绕过密码登入,登入后再修改密码。2.安全模式登入MySQL$ sudo /etc/init.d/mysql stop[sudo] hee 的密码:[ ok ] Stopping mysql (via systemctl): mysq...转载 2019-10-12 22:07:31 · 1014 阅读 · 0 评论 -
Managing Hierarchical Data in MySQL
copy from 这里写链接内容Introduction Most users at one time or another have dealt with hierarchical data in a SQL database and no doubt learned that the management of hierarchical data is not what a relation转载 2017-11-09 14:51:03 · 209 阅读 · 0 评论