PostgreSQL的日期運算計算函數使用

來源:互聯網
上載者:User

標籤:

一:各個資料中的串連符

SqlServer的串連符:+(加號)

Sqlite的串連符:.(點)

PostgreSQL的串連符:||(或)

二:

今天在PostgreSQL計算日期的時候,翻了一些資料,很少,就記錄下來吧~!

其中使用到的函數及變數

to_char()、Date()、now()、current_date

計算兩個日期的差

current_date為今天的日期,為:2015-06-03

Date(‘2015-06-05‘)-current_date=2

select   to_char(current_date,‘yyyy‘)||‘-‘||to_char(birthday,‘mm-dd‘),Date(to_char(current_date,‘yyyy‘)||‘-‘||to_char(birthday,‘mm-dd‘))-current_date 

from tablename where delflag=0 and status=0 

and Date(to_char(current_date,‘yyyy‘)||‘-‘||to_char(birthday,‘mm-dd‘))-current_date>=0 

and Date(to_char(current_date,‘yyyy‘)||‘-‘||to_char(birthday,‘mm-dd‘))-current_date<=7order by birthday desc

三:

select now() + interval ‘1 days‘; 
select now() + interval ‘1 month‘; 
select now() + interval ‘1 years‘; 
四:
SqlServer中進行日期計算時,用到函數
CONVERT(),DATEPART(),getDate()
select CONVERT(varchar(10),CONVERT(varchar(4),DATEPART(year,getDate()))+‘-‘+ CONVERT(varchar(2),DATEPART(month,birthday))+‘-‘+CONVERT(varchar(2),DATEPART(day,birthday)),120),datediff(day,CONVERT(varchar(10),getdate(),120),CONVERT(varchar(10),CONVERT(varchar(4),DATEPART(year,getDate()))+‘-‘+ CONVERT(varchar(2),DATEPART(month,birthday))+‘-‘+CONVERT(varchar(2),DATEPART(day,birthday)),120)) 
from tablename where delflag=0 and status=0 
and datediff(day,CONVERT(varchar(10),getdate(),120),CONVERT(varchar(10),CONVERT(varchar(4),DATEPART(year,getDate()))+‘-‘+ CONVERT(varchar(2),DATEPART(month,birthday))+‘-‘+CONVERT(varchar(2),DATEPART(day,birthday)),120))<=7 
and datediff(day,CONVERT(varchar(10),getdate(),120),CONVERT(varchar(10),CONVERT(varchar(4),DATEPART(year,getDate()))+‘-‘+ CONVERT(varchar(2),DATEPART(month,birthday))+‘-‘+CONVERT(varchar(2),DATEPART(day,birthday)),120))>=0 order by birthday desc

PostgreSQL的日期運算計算函數使用

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.