Oracle:修改表

1、为表增加列:
     格式:alter table 表名 add 列名 类型(宽度)
2、修改列的长度:
     格式:alter table 表名 modify 列名 类型(宽度)
3、删除列:
     格式:alter table 表名 drop column 列名
4、重命名列名:
     格式:alter table 表名 rename column 原列名 to 新列名
5、重命名表名:
     格式:rename 原表名 to 新表名
注意:修改表时,不会影响表中原有的数据。
6、on delete cascade/on delete set null级联删除,其中 on delete set null删除完将外键设置为null
     在创建表,设置外键后面使用。
    例:create table orders(
                                         cid number(3),
                                         constraint cid_FK foreign key(cid) references customers(cid) on delete cascade);
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值