万恶之源-SQL

ORACLE的SQL输出下个月第一个周日的日期

 

SYS@ prod>SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE), 'SUN'),'dd "is the first Sunday for" fmmonth rrrr') "第一个周日的日期" FROM DUAL;
SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE), 'SUN'),'dd "is the first Sunday for" fmmonth rrrr') "第一个周日的日期" FROM DUAL
                                           *
第 1 行出现错误:
ORA-01846: 周中的日无效


SYS@ prod>alter session  set nls_date_language='american';

会话已更改。

SYS@ prod>SELECT TO_CHAR(NEXT_DAY(LAST_DAY(SYSDATE), 'SUN'),'dd "is the first Sunday for" fmmonth rrrr') "第一个周日的日期" FROM DUAL;

第一个周日的日期
---------------------------------------------------------------------------------------------------------------------------------------
04 is the first Sunday for april 2021
You want to display the date for the first Monday 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.In generates an error because rrrr should be replaced by rr
in the format string.
B.It executes successfully but does not return the correct result.
C.It executes successfully and returns the correct result.
D.In generates an error because TO_CHAR should be replaced with TO_DATE .
E.In generates an error because fm and double quotation marks should not be used in the format string.
Answer: C
 
 
 
Jrojyun
2021-03-24
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值