Help needed in sysdate
Hi,
If we use "sysdate-1" in my query its doing 24 hours minus from sydate. Is it possible to get output starting from 12AM using sysdate-1.
For example the below query is resulting the values which are greater than sysdate -1 (exactly 24 hours from sysdate), is it anyway to result the values from 12AM.
select * from test
where date_start >sysdate -1
Thanks