MySQL学习笔记登录和退出MySQL服务器# 登录MySQL
$ mysql -u root -p12345612
# 退出MySQL数据库服务器
exit;基本语法-- 显示所有数据库
show databases;
-- 创建数据
2020-02-01