文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

PostgreSQL时间处理的一些常用方式总结

2023-03-15 09:30

关注

1.获取当前时间

now()函数:

select now();

PostgreSQL时间处理的一些常用方式总结

current_timestamp,同now():

select current_timestamp;

PostgreSQL时间处理的一些常用方式总结

select current_time;

PostgreSQL时间处理的一些常用方式总结

select current_date;

PostgreSQL时间处理的一些常用方式总结

可以去掉now()、掉后面的+8等:

select now()::timestamp(0)without time zone;
select current_timestamp::timestamp(0)without time zone;

PostgreSQL时间处理的一些常用方式总结

2.date_part函数

语法:DATE_PART(field, source), filed可以理解为要截取的类型。

下面是filed支持的类型:

CENTURY,世纪,获取日期所在的世纪:

select date_part('CENTURY', TIMESTAMP '2022-12-16 12:21:13');
select date_part('CENTURY', now());

PostgreSQL时间处理的一些常用方式总结

MILLENNIUM,千年

select date_part('MILLENNIUM', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

YEAR,年份域

select date_part('YEAR', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

MONTH,对于timestamp数值,它是一年里的月份数(1-12);对于interval数值,它是月的数目,然后对12取模(0-11)

select date_part('MONTH', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

select date_part('month', interval '2 years 5 months')

PostgreSQL时间处理的一些常用方式总结

DAY,日期里的天,值是1-31:

select date_part('day', TIMESTAMP '2022-12-16 12:21:13');
select date_part('day', now());

PostgreSQL时间处理的一些常用方式总结

HOUR,小时(0-23)

select date_part('HOUR', TIMESTAMP '2022-12-16 12:21:13');

PostgreSQL时间处理的一些常用方式总结

MINUTE,分钟域(0-59)

select date_part('MINUTE', TIME '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

SECOND,秒域,包括小数部分(0-59[1])

select date_part('SECOND', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

MICROSECONDS,秒域(包括小数)乘以 1,000,000

PostgreSQL时间处理的一些常用方式总结

select date_part('MICROSECONDS', TIME '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

MILLISECONDS,秒域(包括小数)乘以 1,000

select date_part('MILLISECONDS', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

DECADE,年份域除以10:

select date_part('DECADE', TIMESTAMP '2022-12-16 12:21:13');

PostgreSQL时间处理的一些常用方式总结

DOW,星期号(0-6;星期天是0) (仅用于timestamp)

select date_part('DOW', TIMESTAMP '2022-12-16 12:21:13');
select date_part('DOW', now());

PostgreSQL时间处理的一些常用方式总结

DOY,一年中的第几天(1 -365/366) (仅用于 timestamp)

select date_part('DOY', TIMESTAMP '2022-12-16 12:21:13');

PostgreSQL时间处理的一些常用方式总结

QUARTER,该天所在的该年的季度(1-4)(仅用于 timestamp)

select date_part('QUARTER', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

WEEK,该天在所在的年份里是第几周。

select date_part('WEEK', timestamp '2022-12-16 13:21:15');

PostgreSQL时间处理的一些常用方式总结

3.extract()函数

使用语法:extract (field from source),field 支持的类型,和date_part()函数一样

select extract ('year' from timestamp '2022-12-16 13:21:15')

PostgreSQL时间处理的一些常用方式总结

4.日期格式化函数

to_char(timestamp, text),把时间戳转换成字串

select to_char(now(), 'YYYY-MM-DD HH24:MI:SS') 

PostgreSQL时间处理的一些常用方式总结

to_date(text, text) 把字串转换成日期

select to_date('05 Dec 2022', 'DD Mon YYYY')

PostgreSQL时间处理的一些常用方式总结

to_timestamp(text, text) ,把字串转换成时间戳

select to_timestamp('05 Dec 2022', 'DD Mon YYYY')

PostgreSQL时间处理的一些常用方式总结

5.时间运算

select date '2001-09-28' + integer '7';
select date '2001-09-28' + interval '1 hour';
select date '2001-09-28' + time '03:00';
select interval '1 day' + interval '1 hour';
select timestamp '2001-09-28 01:00' + interval '23 hours';
select time '01:00' + interval '3 hours';
select - interval '23 hours';
select date '2001-10-01' - date '2001-09-28';
select date '2001-10-01' - integer '7';
select date '2001-09-28' - interval '1 hour';
select time '05:00' - time '03:00';
select time '05:00' - interval '2 hours;
select timestamp '2001-09-28 23:00' - interval '23 hours';
select interval '1 day' - interval '1 hour';
select timestamp '2001-09-29 03:00' - timestamp '2001-09-27 12:00';
select interval '1 hour' * double precision '3.5';
select interval '1 hour' / double precision '1.5';

PostgreSQL时间处理的一些常用方式总结

6.计算时间差

select now() + interval '10 min/year/month/day/hour/sec/ (1 year 1 month 1 day 1 hour 1 min 1 sec)'
select now() - interval '10 min/year/month/day/hour/sec/ (1 year 1 month 1 day 1 hour 1 min 1 sec)'
select now()::timestamp(0)without time zone-interval '72 hour'
select  extract(day from now() - '2001-09-27 12:00') from  user ;

PostgreSQL时间处理的一些常用方式总结

总结

到此这篇关于pgsql时间处理的一些常用方式总结的文章就介绍到这了,更多相关pgsql时间处理内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-数据库
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯