MySQL 创建库 创建表 对表进行的操作。
1.show databases; 查看已创建的数据库名。
create table students (id bigint,name varchar(20),email varchar(20),age int);
rename table students to student;
show create table
alter table student charset gbk;
alter table student charset utf8;;
alter table student change 表的原列名 表修改的列名 varchar(20);
desc 将要删除的表名;