mysql基础篇--库的管理

库的创建
create database [if not exists] 库名;
库的修改
alter database 库名 character set 字符集;  #更改库的字符集
库的删除
drop database [if exists] 库名;
posted @ 2019-11-26 16:57  L-ran  阅读(104)  评论(0)    收藏  举报