MySQL 教程 | 菜鸟教程 https://www.runoob.com/mysql/mysql-tutorial.html
一、MySQL版本
1)MySQL Enterprise Edition:企业版本,需付费,可以试用30天。 2)MySQL Cluster CGE:高级集群版,需付费。 3)MySQL Community Edition:是开源免费的,是我们通常用的MySQL的版本。
官网MySQL : MySQL Downloads https://www.mysql.com/downloads/
下载MySQL Community Downloads,MSI安装版或ZIP免安装版。
二、MySQL管理工具(Navicat for MySQL)
mysql用户名:root,密码:mysql。但在navicat中报错:client does not support authentication protocol requested by server;consider upgrading mysql client.
解决方案:打开mysql程序客户端,输入密码,登录。进入到mysql提示符状态。
window系统开始——程序——mysql程序菜单——mysql server 8.0——mysql8.0 command line clicet
输入命令: ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'mysql'; FLUSH PRIVILEGES;