--1表操作
--创建表
create table teacher(
id varchar2(50),
name varchar2(100)
);
--修改表名
alter table teacher rename to teachera;
--删除表
drop table teacher;
--2列操作
--添加表列
alter table student add nn int;
--修改表列数据类型
alter table student modify id varchar2(100)
--删除表列
drop table student nn int;