服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - PostgreSQL - postgresql 中的时间处理小技巧(推荐)

postgresql 中的时间处理小技巧(推荐)

2021-04-20 21:55幺零二肆 PostgreSQL

这篇文章主要介绍了postgresql 中的时间处理小技巧(推荐),本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下

时间格式处理

按照给定格式返回:to_char(timestamp,format)

postgresql 中的时间处理小技巧(推荐)

返回相差的天数:(date(time1) - current_date)

postgresql 中的时间处理小技巧(推荐)

返回时间戳对应的的日期[yyyy-mm-dd]:date(timestamp)

postgresql 中的时间处理小技巧(推荐)

计算结果取两位小数(方便条件筛选):round((abs(a-b)::numeric / a), 2) * 100 < 10

postgresql 中的时间处理小技巧(推荐)

时间运算

加减运算

'-' :前x天/月/年

'+' :后x天/月/年

current_timestamp - interval 'x day/month/year...' 返回时间戳

postgresql 中的时间处理小技巧(推荐)

date_part('day', current_timestamp - time1) 两个时间相差的天数

postgresql 中的时间处理小技巧(推荐)

返回时间间隔的秒数

两个timestamp 直接相减返回的是 interval类型,而不是毫秒数

extract(epoch from (time1- time2)) * 1000

postgresql 中的时间处理小技巧(推荐)

如果在sql 中使用long类型的 timestamp,需要包裹 to_timestamp() 函数

postgresql 中的时间处理小技巧(推荐)

参考资料:

1. https://www.yiibai.com/manual/postgresql/functions-formatting.html

2. http://www.postgres.cn/docs/9.4/functions-datetime.html

到此这篇关于postgresql 中的时间处理小技巧(推荐)的文章就介绍到这了,更多相关postgresql 时间处理内容请搜索服务器之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持服务器之家!

原文链接:https://blog.csdn.net/Byd_Liang/article/details/115284063

延伸 · 阅读

精彩推荐