DDL_操作表&删除、DDL_操作表&修改
DDL_操作表&删除
1,C(Create):创建
2,R(Retrieve):查询 :
3,U(Update):修改
4,D(Delete):删除
drop table 表名称;
drop table if exists 表名;
我们来使用一下:
DROP TABLE student;
那么就没有这个student表了
DDL_操作表&修改
修改表名称
alter table 表名 rename to 新的表明
修改表的字符集
alter table 表名 character set 字符集名称
添加一列
alter tavle 表明 add 列名 数据类型
修改列名称,类型
alter table stu chage sex varchar(20)
删除列
alter table stu drop 列名称;