方法/步骤 1 select trunc(sysdate) from dual 结果是 截止到当日不设置,默认是截止到”日“2 select trunc(sysdate,'year') from dual;--获取到本年 第一天 3 select trunc(sysdate,'month') from dual;--获取到 本月 第一天 4 select trunc(sysdate,'q') from dual;...
select trunc(sysdate,'q') from dual--本季开始日期 select trunc(sysdate,'month') from dual --本月开始日期 select trunc(sysdate ,'mm') from dual --本月开始日期 select trunc(sysdate,'year') from dual --本年开始日期 select trunc(sysdate ,'yyyy') from dual --本年开始日期 select trunc(...
select trunc(sysdate,'year') from dual; //返回本年的第一天 select trunc(sysdate,'month') from dual; //返回本月的第一天 select trunc(sysdate,'q') from dual; //返回本季度的第一天 select to_char(trunc(sysdate),'yyyy-mm-dd hh24:mi:ss') from dual; //获取当天的零时零分零秒 select ...
select trunc(sysdate) from dual 结果是 截止到当日 不设置,默认是截止到”日“ 2 select trunc(sysdate,'year') from dual; --获取到本年 第一天 3 select trunc(sysdate,'month') from dual; --获取到 本月 第一天 4 select trunc(sysdate,'q') from dual; --获取到本季度 第一天 5 select to_...
SELECT TRUNC(SYSDATE, 'YEAR') FROM DUAL; 复制代码 这将返回当前日期所在年份的第一天,时间部分被截断为0。 将日期截断到指定的时间单位: SELECT TRUNC(SYSDATE, 'HH') FROM DUAL; 复制代码 这将返回当前日期的小时部分,分钟、秒和毫秒部分被截断为0。 可以在TRUNC函数中使用不同的格式来截断日期到不同的...
TRUNC(SYSDATE, 'YEAR'):截断当前日期到年份,例如'2022-08-12 15:23:45'将被截断为'2022-01-01' TRUNC(SYSDATE, 'MONTH'):截断当前日期到月份,例如'2022-08-12 15:23:45'将被截断为'2022-08-01' TRUNC(SYSDATE, 'HH24'):截断当前日期到小时,例如'2022-08-12 15:23:45'将被截断为'2022-08-12...
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual; --显示当前时间 select trunc(sysdate,'year') from dual; --截取到年(本年的第一天) select trunc(sysdate,'q') from dual; --截取到季度(本季度的第一天) select trunc(sysdate,'month') from dual; --截取到月(本月的第一天) ...
Year (rounds up on July 1) IYYY IY IY I ISO Year Q Quarter (rounds up on the sixteenth day of the second month of the quarter) MONTH MON MM RM Month (rounds up on the sixteenth day) WW Same day of the week as the first day of the year ...
EXTRACT(YEAR FROM SYSDATE ) as 年, EXTRACT(month FROM SYSDATE ) as 月, EXTRACT(DAY FROM SYSDATE ) as 日, EXTRACT(HOUR FROM TIMESTAMP '2022-11-02 10:10:10') as 小时, EXTRACT(MINUTE FROM TIMESTAMP '2022-11-02 11:11:11') as 分钟, ...
Year (rounds up on July 1) IYYY IY IY I ISO Year Q Quarter (rounds up on the sixteenth day of the second month of the quarter) MONTH MON MM RM Month (rounds up on the sixteenth day) WW Same day of the week as the first day of the year ...