oracle获得⽉最后⼀天,oracle获取本⽉第⼀天和最后⼀天及
Oracletrunc(。。。
select to_char(trunc(add_months(last_day(sysdate), -1) + 1), 'yyyy-mm-dd') "本⽉第⼀天",
to_char(last_day(sysdate), 'yyyy-mm-dd') "本⽉最后⼀天"
--Oracle trunc()函数的⽤法
/**************⽇期********************/
1.select trunc(sysdate) from dual  --2011-3-18  今天的⽇期为2011-3-18
2.select trunc(sysdate, 'mm')  from  dual  --2011-3-1    返回当⽉第⼀天.
3.select trunc(sysdate,'yy') from dual  --2011-1-1      返回当年第⼀天
4.select trunc(sysdate,'dd') from dual  --2011-3-18    返回当前年⽉⽇
5.select trunc(sysdate,'yyyy') from dual  --2011-1-1  返回当年第⼀天
6.select trunc(sysdate,'d') from dual  --2011-3-13 (星期天)返回当前星期的第⼀天
7.select trunc(sysdate, 'hh') from dual  --2011-3-18 14:00:00  当前时间为14:41
8.select trunc(sysdate, 'mi') from dual  --2011-3-18 14:41:00  TRUNC()函数没有秒的精确
/***************数字********************/
/*
TRUNC(number,num_digits)
Number 需要截尾取整的数字。
Num_digits ⽤于指定取整精度的数字。Num_digits 的默认值为0。
TRUNC()函数截取时不进⾏四舍五⼊
*/
9.select trunc(123.458) from dual --123
10.select trunc(123.458,0) from dual --123
11.select trunc(123.458,1) from dual --123.4
12.select trunc(123.458,-1) from dual --120
13.select trunc(123.458,-4) from dual --0
14.select trunc(123.458,4) from dual  --123.458
15.select trunc(123) from dual  --123
16.select trunc(123,1) from dual --123
oracle中trunc函数用法
17.select trunc(123,-1) from dual --120
java获取本⽉第⼀天和最后⼀天
public class CalendarTest { public static void main(String[] args) { // 获取当前年份.⽉份.⽇期 Calendar cale = ...
mysql⽇期 获取本⽉第⼀天 获取下个⽉的第⼀天
--获取当前⽇期 select curdate(); --获取当⽉最后⼀天 select last_day(curdate()); --获取本⽉第⼀天 select DATE_ADD(curdate( ...
Java 取本⽉第⼀天和最后⼀天
/** * 获取本⽉第⼀天 * @return */ public Date getmindate(){ Calendar calendar = Instance(); cal ...
MySQL 获取本⽉第⼀天、下个⽉第⼀天等
select curdate(); --获取当前⽇期 select last_day(curdate()); --获取当⽉最后⼀天. select DATE_ADD(curdate(),interva ...
JS 获取本⽉第⼀天零点时间戳并转化成yy-mm-dd
JS 获取本⽉第⼀天零点时间戳并转化成yy-mm-dd 格式
Oracle trunc()函数的⽤法
Oracle trunc()函数的⽤法 /**************⽇期********************/1.select trunc(sysdate) from dual --2013-0 ...
Oracle trunc()函数的⽤法--来着⼼静禅定ing
1.TRUNC(for dates) TRUNC函数为指定元素⽽截去的⽇期值. 其具体的语法格式如下: TRUNC(date[,fmt]) 其中: date ⼀个⽇期值 fmt ⽇期格式,该⽇期将由指 ...
Oracle trunc()函数的⽤法及四舍五⼊ round函数
--Oracle trunc()函数的⽤法/**************⽇期********************/1.select trunc(sysdate) from dual  --2011 ...
[转]Oracle trunc()函数的⽤法

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。