Sorry! Can't type english.Question 1:Output the DESCRIPTION for INFORMATION 1. Where there are spaces put * and for tabs put +. ' ' biao shi space, zen me zhao 'tabs' ne?Question 2:Write a single SELECT statement to output today's date in the following format (Today is the third of April)zen me ba 06 zhuan huan cheng 'sixth'?XIE XIE DA JIA!!!

解决方案 »

  1.   

    Can't type english.
    那就输中文
      

  2.   

    Sorry, can't type Chinese.......
    My bad......
      

  3.   

    Question 2: Write a single SELECT statement to output today's date in the following format (Today is the third of April) zen me ba 06 zhuan huan cheng 'sixth'? ===========================================
    select 'Today is the '||to_char(sysdate,'YYYY-MM-DD') 当前日期 from dual;
      

  4.   

    Question 2: Write a single SELECT statement to output today's date in the following format (Today is the third of April) zen me ba 06 zhuan huan cheng 'sixth'? =========================================== 
    SELECT to_char(SYSDATE,'ddspth') FROM dual
      

  5.   

    SELECT 'TODAY IS THE ' || TO_CHAR(SYSDATE, 'DDSPTH') FROM DUALTODAY IS THE EIGHTH
      

  6.   

    question 1:
    ascii(tabs)=9
    chr(9)=tabs
      

  7.   

    SQL> select 'Today is the '||to_char(sysdate,'YYYY-MM-DD') 当前日期 from dual; 当前日期
    -----------------------
    Today is the 2008-12-08SQL> 我的怎么好着呢