Hi,
I have table lets say rate, it has a field called expire_date. Now I need to show records from this table whose expire date is greater than today. Can anybody tell me how to do it?
currently, I am doing like this:
select * from rate where expire_date >= (select SYSDATE from DUAL);
Now this query is selecting records whose timestamp is greater than the current timestamp and drops others even if the expire_Date is of today with less time stamp.
I need to show records which are valid from today and future dates irrespective of today
Regards,
Ashish