oracle二维表的维护

添加表字段:

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中作为主键使用。

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值