Hi,
for example I need current week 'Tuesday' Date
if i run
select next_day ( trunc (sysdate) , 'Tuesday' ) from dual I am getting 11-MAR-14
If i run the same tomorrow i am getting as 18, but I need it as 11th when ever i run this week because current week tuesday is 11-mar-2014
select next_day ( trunc (sysdate+1) , 'Tuesday' ) from dual
Appreciate your help..
thanks..