mysql基础篇--库的管理
库的创建
create database [if not exists] 库名;
库的修改
alter database 库名 character set 字符集; #更改库的字符集
库的删除
drop database [if exists] 库名;
create database [if not exists] 库名;
alter database 库名 character set 字符集; #更改库的字符集
drop database [if exists] 库名;