一、库的创建
语法:
creat database 库名 ;
#案例:创建库books
creat database if not exists books ;
二、库的修改
#案例:将books库换名
rename database books to 新库名
#更改库的字符集
alter database books character set gbk;
三、库的删除
drop database if exists books;
标签:exists,creat,database,创建,管理,案例,books From: https://www.cnblogs.com/liujy2233/p/16987114.html