一直感觉需要用触发器进行判断
其实Oracle本身就提供了这个功能,通过约束来定义表字段之间的大小关系;;
alter table TEST_123
add constraint TESDD
check (time1>time2);
这样增加一个约束,字段time1必须大于time2
关于Oracle的表字段之间的约束关系
本文导语: 一直感觉需要用触发器进行判断 其实Oracle本身就提供了这个功能,通过约束来定义表字段之间的大小关系;; alter table TEST_123 add constraint TESDD check (time1>time2); 这样增加一个约束,字段time1必须大于time2
一直感觉需要用触发器进行判断
其实Oracle本身就提供了这个功能,通过约束来定义表字段之间的大小关系;;
alter table TEST_123
add constraint TESDD
check (time1>time2);
这样增加一个约束,字段time1必须大于time2