show databases;
创建名为test_1的使用utf8mb4字符集的数据库:
create database test_1 character set utf8mb4;
use 数据库名;
drop database 数据库名;
需要操作数据库中的表时,需要先使用该数据库:
使用数据库test_1
:
use test_1;
create table student (id int,name varchar(20),age int,sex varchar(1));
desc student;
drop table student;