1.创建表 :
create talbe 表名 (字段属性)
2.表的修改
1)添加列
alter table 表名 add 列名 列类型 default 值
alter table stu add score number(4,1) default 60;<defaule 设置默认的值
2)修改列名
alter table 表名 rename column 旧列名 to 新列名
alter table student rename column score to grade;
3)删除列
alter table 表名 drop column 列名
alter table student drop column grade;
4) 修改表名
rename 旧表名 to 新表名
rename student to ss;
5)删除表
drop table 表名;
drop table student;