1

日を保存してifステートメントで使用しようとしましたが、機能していません....

if all をスキップします

 select TO_CHAR(sysdate, 'DAY')  into v_today from dual ; // save the day to v_today

  if v_today <> 'SUNDAY'  or  v_today <> 'SATURDAY'// check for the vlaue of v_today
  then
         DBMS_OUTPUT.PUT_LINE('the office is open') ;
  else
         DBMS_OUTPUT.PUT_LINE('the  office is close of the weekend') ; 
  end if;
4

2 に答える 2