Oracle
1Z0-071 · Question #379
The SYSDATE function displays the current Oracle Server date as: 21-MAY-19 You wish to display the date as: MONDAY, 21 MAY, 2019 Which statement will do this?
The correct answer is D. SELECT TO_CHAR(SYSDATE, `FMDAY, DD MONTH, YYYY') FROM DUAL. SELECT ID, TO_CHAR(Start_Date,'fmDay Month fmDD, YYYY') AS "Start Date" FROM Type/TOCHARDatefmDayMonthfmDDYYYYEmbeddedspacescanberemovedbyplacingthefmprefi
Using Conversion Functions and Conditional Expressions
Question
The SYSDATE function displays the current Oracle Server date as:
21-MAY-19 You wish to display the date as:
MONDAY, 21 MAY, 2019 Which statement will do this?
Options
- ASELECT TO_DATE(SYSDATE, `FMDAY, DD MONTH, YYYY') FROM DUAL;
- BSELECT TO_CHAR(SYSDATE, `FMDD, DAY MONTH, YYYY') FROM DUAL;
- CSELECT TO_CHAR(SYSDATE, `FMDAY, DDTH MONTH, YYYY') FROM DUAL;
- DSELECT TO_CHAR(SYSDATE, `FMDAY, DD MONTH, YYYY') FROM DUAL;
How the community answered
(23 responses)- A13% (3)
- B9% (2)
- C4% (1)
- D74% (17)
Explanation
SELECT ID, TO_CHAR(Start_Date,'fmDay Month fmDD, YYYY') AS "Start Date" FROM Type/TOCHARDatefmDayMonthfmDDYYYYEmbeddedspacescanberemovedbyplacingthefmprefi
Topics
#TO_CHAR#date format model#DAY format element#FM modifier
Community Discussion
No community discussion yet for this question.