库的创建

create database [if not exists] 库名;

库的修改

修改字符集
alter database 库名 character set gbk;

库的删除

drop database [if exists] 库名;