Oracle sql: using bind variable for dates..
- by user333747
Here is a simple working query without bind variables:
select * from table1 where time_stamp sysdate - INTERVAL '1' day;
where time_stamp is of type DATE.
I should be able to input any number of days in the above query using bind variable.
So I tried the following and does not seem to work:
select * from table1 where time_stamp sysdate - INTERVAL :days day;
I tried entering the numeric input both as 10 and '10',for eg. You get ORA-00933 error on 10g.