4月23日 MySQL学习-DDL
Posted sucker
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4月23日 MySQL学习-DDL相关的知识,希望对你有一定的参考价值。
今日学习的是DDL的操作(数据定义语言)
create table teachers (id int,name varchar(50));//创建一个表 给了两个类型
alter table student add score int ;//添加一列
alter table student modify id varchar(25);//修改一列的类型
alter table student drop id;//删除一列
desc student;//查看一个表
rename table student to students;//修改表的名称 将student改成students
show create table students;//显示创建表的详细
alter table students character set gbk;// 设置表的字符集
drop table students;//删除一个表
以上是关于4月23日 MySQL学习-DDL的主要内容,如果未能解决你的问题,请参考以下文章