标签:建表 lte change student code 结构 drop 一个 create
创建表之前要链接到库 例如 库名为 student
use student;
连接结束可以查看此库中所有表
show tables;
创建表
create table student( id int, sname varchar(20), ssex varchar(2) );
查看表结构
desc student;
表插入新字段
alter table student add column sold double;
修改字段类型
alter table student modify column sold varchar(2);
修改字段名
alter table student change column sold ssold varchar(2);
删除一个字段
alter table student drop column ssold;
修改表名
alter table student rename to student01;
最后删除表
drop table student01;
标签:建表 lte change student code 结构 drop 一个 create
原文地址:https://www.cnblogs.com/xiaozhang666/p/10270902.html