添加表字段:
SQL语句:alter table 表名 add 字段名 类型
举例说明:alter table student add sphone number(11)
修改表字段:
修改字段类型:
SQL语句:alter table 表名 modify 字段名 新的类型
举例说明:alter table student modify sphone varchar2(11)
修改字段名:
SQL语句:alter table 表名 rename column 旧名 to 新名
举例说明:alter table student rename column sphone to phone
删除字段:
SQL语句:alter table 表名 drop column 字段名
举例说明:alter table student drop column phone
删除表:
drop table 表名
修改表名:
rename 旧名 to 新名
rename student to student2
小知识点:在命令窗口下查表结构:desc 表名
在oracle中创建序列:
1.创建序列:
create sequence cc;
特点:1.默认开始是没有值的,也就是指针在没有值的位置
2.序列名.nextval 每次执行都会自增加1
3.序列名.carrval 查看当前序列的值,开始是没有
作用:在oracle中作为主键使用。