OCP-1Z0-051-V9.02-87题

该博客讨论了如何使用Oracle SQL的NEXT_DAY和LAST_DAY函数来找到下个月的第一个星期一,并提供了相关命令的执行结果和验证过程。

87. You want to display the date for the first Mon day of the next  month and issue the following

command:

SQL>SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE),'MON'),

dd "is the first Monday for" fmmonth rrrr')

 FROM DUAL;

What is the outcome?

A. It executes successfully and returns the correct result.

B. It executes successfully but does not return the correct result.

C. It generates an error because TO_CHAR should be replaced with TO_DATE.

D. It generates an error because rrrr should be replaced by rr in the format string.

E. It generates an error because fm and double quotation marks should not be used in the format string.

Answer: A

答案解析:

参考:http://blog.csdn.net/rlhua/article/details/12848395

http://blog.csdn.net/rlhua/article/details/12832885


题意要输出下个月第一个星期一。

实验验证:


下个月的星期一是4号。由结果得知可以正确执行,并且结果是正确的。


scott@TEST0924>  SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE),'MON'),

  2    'dd "is the first Monday for" fmmonth rrrr')

  3   from dual;


TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE),'MON'),'DD"ISTHEFIRSTMONDAYFOR"FM

--------------------------------------------------------------------

04 is the first Monday for november 2013

 

SYSDATE输出当前日期,即18-OCT-13

scott@TEST0924> select sysdate from dual;


SYSDATE

------------------

18-OCT-13

LAST_DAY(SYSDATE)输出当月最后一天,即10月31号。

 scott@TEST0924> select LAST_DAY(SYSDATE) from dual;


LAST_DAY(SYSDATE)

------------------

31-OCT-13

NEXT_DAY(LAST_DAY(SYSDATE),输出指定日期的下一个日期,指定的日期是星期一,即是11月4号。

scott@TEST0924> SELECT NEXT_DAY(LAST_DAY(SYSDATE),'MON') FROM DUAL;


NEXT_DAY(LAST_DAY(

------------------

04-NOV-13

最后以特定的格式输出。

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值