mysql -h (主机地址) -u (用户名) -p (用户密码)
show databases;
create database xbd(数据库名);
drop database xbd(数据库名);
use database xbd(数据库名);
命令:create table <表名> ( <字段名1> <类型1> [,..<字段名n> <类型n>]);
drop table person(表名);
MySQL 8 + macOS 错误:Authentication plugin 'caching_sha2_password' cannot be loaded: http://1c7.me/mysql-8-connect-error-2018/