一、安装
方法1:brew install mysql
方法2:下载mysql应用程序安装,详细见
https://blog.csdn.net/weixin_44427181/article/details/127552892
二、启动与停止
1.brew方式
brew services start mysql
brew services stop mysql
2.程序安装方式
三、常用命令
代码语言:SQL复制//连接mysql
mysql -uroot -p
代码语言:SQL复制//查看所有库
show databases;
代码语言:SQL复制//使用一个数据库
use mydb;
代码语言:SQL复制//查看表
show tables;
代码语言:SQL复制// 退出
exit
代码语言:SQL复制//运行一个sql脚本
source /your_local_path/xxx.sql