查询创建日期超过两周的数据
select * from act_ru_task t where sysdate - to_date(to_char(t.create_time_,'yyyy-mm-dd'),'yyyy-mm-dd')>14
其中t.create_time_字段格式:timestamp(6)
select * from act_ru_task t where sysdate - to_date(to_char(t.create_time_,'yyyy-mm-dd'),'yyyy-mm-dd')>14
其中t.create_time_字段格式:timestamp(6)