参考地址:https://www.runoob.com/mysql/mysql-install.html
windows 安装


安装navcat 的绿色版:
链接:https://pan.baidu.com/s/1-EKkEmc2aBgJmvoMwKgnyg
提取码:oq3d
复制这段内容后打开百度网盘手机App,操作更方便哦
安装后无法连接本地mysql数据库可以参考:
https://www.cnblogs.com/zichuan/p/9203129.html
Navicat连接MySQL Server8.0版本时出现Client does not support authentication protocol requested by server;解决如下:

命令如下:
1、use mysql;
2、alter user ‘root’@’localhost’ identified with mysql_native_password by ‘**‘;
3、flush privileges;
