1、查看Mysql库.
show databases;

2、创建Mysql库.
create database 库名;

3、修改Mysql库信息.
alter database 库名 character set utf8;

4、查看Mysql库信息.
show create database 库名;

5、使用Mysql库.
use 库名;

6、删除Mysql库.
drop database 库名;

时间:2026-02-16 10:59:24
1、查看Mysql库.
show databases;

2、创建Mysql库.
create database 库名;

3、修改Mysql库信息.
alter database 库名 character set utf8;

4、查看Mysql库信息.
show create database 库名;

5、使用Mysql库.
use 库名;

6、删除Mysql库.
drop database 库名;
