MySQL基础命令
创建数据库
Show databases;查看
选择数据库
Use test;
在test数据库中创建表
create table t_stu(
id int,
name varchar(20)
);
查看表信息
desc t_stu;
添加字段
alter table t_stu add age int;
字段age成功添加
修改字段
alter table t_stu change age cj int;
字段age被修改为cj类型为int
删除字段;
alter table t_stu drop cj;
字段cj被删除
修改表名
alter table t_stu rename s_stu;
表名已被成功修改
删除表
drop table s_stu;
表s_stu被成功删除
删除数据库
drop database test;