MySQL各版本的区别
https://yq.aliyun.com/articles/607474
http://blog.sina.com.cn/s/blog_62b37bfe0101he5t.html
MySQL版本时间线
https://www.cc1021.com/article/134.html
关于MySQL对数据库用户密码的加密方式
MySQL - ERROR 2059: Authentication plugin 'caching_sha2_password'
https://my.oschina.net/johnsken/blog/1840348
############################################
> show variables like 'default_authentication_plugin';
> select host,user,plugin from mysql.user;
> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'MySQL@123';
> ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'MySQL@123';
> flush pr