0
点赞
收藏
分享

微信扫一扫

oracle学习66-oracle之数据处理之约束2

迪莉娅1979 2022-08-20 阅读 59
编程语言

oracle学习66-oracle之数据处理之约束2_其它

 

--修改约束
alter table emp5 modify
(salary number(10,2) not null)

oracle学习66-oracle之数据处理之约束2_其它_02

 

--修改约束
alter table emp5 modify
(salary number(10,2) not null)

oracle学习66-oracle之数据处理之约束2_其它_03

 

--删除约束
alter table emp5
drop constraint emp5_name_nn

运行结果

oracle学习66-oracle之数据处理之约束2_其它_04

 

oracle学习66-oracle之数据处理之约束2_其它_05

 

oracle学习66-oracle之数据处理之约束2_其它_06

 



举报

相关推荐

0 条评论