Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: Day of week function?
Mark Aurit wrote:
> if day_of_week_is('Friday',sysdate) then
> ... perform friday processing
> else
> ... perform other days processing
> end if
Try:
if to_char(sysdate,'DAY') = 'FRIDAY' then .....
Vents Lauva
vents_lauva_at_fix.lv
Received on Wed Jun 03 1998 - 01:18:29 CDT
![]() |
![]() |