2. selectto_char( to_date(222,'J'),'Jsp') from dual 显示Two Hundred Twenty-Two 3. 求某天是星期几 selectto_char(to_date('2002-08-26','yyyy-mm-dd'),'day') from dual; 星期一 selectto_char(to_date('2002-08-26','yyyy-mm-dd'),'day','NLS_DATE_LANGUAGE = American') from d...
6.获取指定日期所属季度 selectto_char(to_date('2019-12-26','yyyy-mm-dd'),'Q')fromdual; 本文不再更新,可能存在内容过时的情况,实时更新请移步我的新博客:Oracle中的TO_DATE和TO_CHAR函数以及日期处理;
to_char() function The following are number examples for theto_charfunction. The following is a list of valid parameters when theto_charfunction is used to convert a date to a string. These parameters can be used in many combinations. The following are date examples for theto_charfunction....
1. 日期和字符转换函数用法(to_date,to_char) selectto_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as nowTime from dual; //日期转化为字符串 selectto_char(sysdate,'yyyy') as nowYear from dual; //获取时间的年 selectto_char(sysdate,'mm') as nowMonth from dual; //获取时间的月 selectto_c...
Oracle中的TODATE和TOCHAR函数
TO_DATE 是把字符串转换为数据库中得日期类型转换函数 TO_NUMBER 将字符转化为数字 ? TO_CHAR 使用TO_CHAR函数处理数字 TO_CHAR(number, '格式') TO_CHAR(salary,’$99,999.99’); 使用TO_CHAR函数处理日期 TO_CHAR(date,’格式’); ? TO_NUMBER 使用TO_NUMBER函数将字符转换为数字 TO_NUMBER(char[, ...
在实际的工作中会经常会用到to_char()、to_date()函数来对时间、日期进行处理。 1、to_char()函数的用法 1.1、将时间日期按照指定的格式输出,得到的是字符串,而非date类型。 [html]view plaincopy 1. select sysdate,to_char(sysdate,'yyyy-mm-dd')from dual; ...
Oracle 中的 TO_DATE 和 TO_CHAR 函数 30分钟:sysdate+1/48 1个小时:sysdate+1/24 一天:sysdate+1 一个星期: sysdate+7 每个星期五中午: NEXT_DAY(TRUNC(SYSDATE),'星期五') + 12/24 一个月:add_months(sysdate,1) --可以为正负数 一年:add_months(sysdate,12) 月份加减:select to_char(add_...
1. 日期和字符转换函数用法(to_date,to_char) select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') as nowTime from dual; //日期转化为字符串 select to_char(sysdate,'yyyy') as nowYear from dual; //获取时间的年 select to_char(sysdate,'mm') as nowMonth from dual; //获取时间的月 ...