目录
Oracle常用函数
1、时间函数
1.1、获取当月第一天
select to_char(trunc(add_months(last_day(sysdate), -1) + 1), 'yyyy/MM/dd') from dual;
1.2、当月最后一天
select to_char(last_day(sysdate),'yyyy/MM/dd') from dual;
获取当月天数
select to_char(last_day(sysdate),'dd') from dual;
2、切割函数substr
--语法
select substr(srcStr,startIndex,length) from dual;
--从第4位(包含)开始截取2位,结果位 45
select substr('1234567890',4,2) from dual;
标签:常用,函数,substr,当月,dual,Oracle,select
From: https://www.cnblogs.com/lgxdev/p/16731848.html