库的管理 创建 create 语法:create database 库名 [character set 字符集] # 案例:创建库 create database if not exists books; 修改 alter 更改库的字符集 ALTER DATABASE books character set gbk; 删除 drop drop database if exists books; 表的管理 创建 create 语法: create table 表名( 列名 列的类型([长度]) […