1.>在oracle中如何添加这样一个check约束:
输入时间在当前时间的100年以内 (就是sysdate-100年.)
2.>如果不太好办.那么小于当前时间也行.  (即 birth<sysdate)create table test(birth date not null);
alter table test add constraint ck_date check( birth between 
                                               to_date('19090101010101','yyyymmddhhmiss') and
                                               sysdate);
                                             将sysdate改成to_date(sysdate)也不行
该如何写..
谢谢了