select *
from tabname
where trunc(develiverTime) = trunc(sysdate)
或者:
select *
from tabname
where develiverTime>= trunc(sysdate) and develiverTime< trunc(sysdate) + 1
select *
from tabname
where trunc(develiverTime) = trunc(sysdate)
或者:
select *
from tabname
where develiverTime>= trunc(sysdate) and develiverTime< trunc(sysdate) + 1