Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to get the last date of a week??
Violin пишет в сообщении <36b00652.24762534_at_news.twsc.pouchen.com.tw> ...
>Hello,
>Does anyone know how to get the last date of the week?
>
>I could know the first date of the week by trunc function.......
>SQL> select trunc(to_date('19990628','yyyymmdd'),'day') "MON_DATE" from
dual;
>
>MON_DATE
>------------------
>27-JUN-99
>
>But how to get the last date of the week(03-JUL-99)???
>Thank you for your help!
Simply add 7 days...
SQL> select trunc(to_date('19990628','yyyymmdd'),'day')+7 "MON_DATE" from dual;
^^^MON_DATE
Valery Yourinsky Received on Thu Jan 28 1999 - 04:20:30 CST
![]() |
![]() |