sql
select *
from T_TEST
where to_date(STARTTIME, 'yyyy-mm-dd') < sysdate
and to_date(ENDTIME, 'yyyy-mm-dd') > sysdate;
sysdate是oarcle中获取当前日期的函数。
sql
select *
from T_TEST
where to_date(STARTTIME, 'yyyy-mm-dd') < sysdate
and to_date(ENDTIME, 'yyyy-mm-dd') > sysdate;
sysdate是oarcle中获取当前日期的函数。