ORACLE11G OCP-051 第87题

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?

你想显示下月的第一个周一的日期,分析下面的语句:

SQL>SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE),'MON'),
'dd "is the first Monday for" fmmonth rrrr')
FROM DUAL;

输出是什么:

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.

解析:

LAST_DAY() ,返回参数所在月份的最后一天日期

NEXT_DAY(a1,a2) 返回自a1日起,下个a2星期所在日期

TO_CHAR()转换为字符串


实验的时候会报错:

select   NEXT_DAY   (sysdate,   'MONDAY ')   FROM   DUAL; 

ORA-01846:   周中的日无效

是因为NLS_DATE_LANGUAGE  参数因为的:

修改为alter   session   set   NLS_DATE_LANGUAGE   =   American;就可以了;

或者直接使用数字代表星期也可以:

SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE),1),'dd "is the first Monday for" fmmonth rrrr') FROM DUAL;


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值