Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: from max date - 7 days
On 19 Okt., 11:39, sansar <uemit.uen..._at_googlemail.com> wrote:
> hallo !
> can me somebody say, how i get from this select statement max date - 7
> days.
>
> select max(to_date(substr(PARTITION_NAME,6,10),'dd.mm.yyyy')) from
> dba_tab_partitions
> where table_name='FRONTEND_TAB'
>
> thank you
>
> Oracle info: Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit
> Production
select max(to_date(substr(PARTITION_NAME,6,10),'dd.mm.yyyy')) - 7 from dba_tab_partitions
where table_name='FRONTEND_TAB'; Received on Fri Oct 19 2007 - 06:10:05 CDT
![]() |
![]() |