🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
[TOC] ## 查看数据库: show databases ; ## 创建数据库: show database xxx ; ## 创表: create table t_student( sid int primary key, sname varchar(50) not null, email varchar(200) unique, isdel int default 1 ); ## 查看表: show table; ## 查看表内容: show create table t_student ; desc t_student ; ## 删除表: drop table t_student ; ## 修改: ### 1.添加 alter table t_student add classname varchar(50) ; ### 2.修改类型 alter table t_student modify classname int ; ### 3.修改名字 alter table t_student change classname classid int ; ### 4.删除 alter table t_student drop classid ; ## 改表名: rename table t_student to t_students ; ## 修改编码: character set gdk