Hello,
You can do this so:
select trunc(sysdate-10, 'd')-1 from dual;
E.g.:
select x, trunc(x-10, 'd')-1 from (
select to_date('12/2/03', 'mm/dd/yy') + rownum x from user_objects where rownum<=14);
X TRUNC(X-10,'D')-1
12/3/2003 11/22/2003
12/4/2003 11/22/2003
12/5/2003 11/22/2003...