PostgreSql日期类型处理详细实例

1. 查询天数据

查询当天数据

  1. select * from table1 as n
  2. where n.created_time>=current_date;

查询昨天数据

  1. select * from table1 as n
  2. where n.created_time>=current_date1 and n.created_time <current_date ;

2. 查询月数据

查询当月数据

  1. select *
  2. from table1 as n
  3. WHERE extract(YEAR FROM created_time) = extract(YEAR FROM now())
  4. and extract(MONTH FROM created_time) = extract(MONTH FROM now())

查询上月数据

  1. select *
  2. from table1 as n
  3. where created_time >= date_trunc(‘month’,current_date – interval ‘1’ month)
  4. and created_time <; date_trunc(‘month’,current_date)

3. 查询年数据

查询当年数据

  1. select *
  2. from table1 as n
  3. WHERE extract(YEAR FROM created_time) = extract(YEAR FROM now()) ORDER BY created_time

查询去年数据

  1. select *
  2. from table1 as n
  3. where created_time >= date_trunc(‘year’,current_date  interval ‘1’ year)
  4. and created_time < date_trunc(‘year’,current_date)

4.类型转换

1.查询某天:datetime类型的,需要转换为 date 类型,如果你要查询的字段已经是 date 类型则不需要进行转换

  1. select t_create
  2. from table
  3. where t_create::date = to_date(‘20230208‘, ‘YYYY-MM-DD’);

2.string转timestamp类型,按范围查询

  1. select * from table where create_date >= 20230108‘::timestamp and create_date < ‘2023-02-08’::timestamp;

3.时间戳Long转Timestamp

  1. select TO_TIMESTAMP(1512490630)

4.string转data,只能得到年月日,得不到时分秒

  1. select to_date(‘20230128 12:55:05‘)

5.当前日期 select current_date

6.带时区的时分秒值 select current_time;也可以使用current_time(precision),将结果在四分之一秒的范围内四舍五入到位数,比如select current_time(2);对应没有时区的值:select localtime;

7.带时区的年月日时分秒值 select current_timestamp; 对应没有时区的值:select localtimestamp;

补充:时区转换

有些时候,时区转换对于特定时间在不同时区显示特别有用。AT TIME ZONE提供了这种功能,它是如何做到的?我们将在一个事务中进行演示,因为同一事务中now()函数总是返回相同的值,从而我们可以很容易看到同一时间在不同时区显示的差别。

  1. postgres=# BEGIN;
  2. BEGIN
  3. postgres=# SELECT now();
  4.          now
  5. ——————————-
  6.      20130826 12:39:39.122218+02
  7. postgres=# SELECT now() AT TIME ZONE ‘GMT’;
  8.          timezone
  9. —————————-
  10.      20130826 10:39:39.122218
  11. postgres=# SELECT now() AT TIME ZONE ‘GMT+1’;
  12.          timezone
  13. —————————-
  14.      20130826 09:39:39.122218
  15. postgres=# SELECT now() AT TIME ZONE ‘PST’;
  16.          timezone
  17. —————————-
  18.      20130826 02:39:39.122218

总结

到此这篇关于PostgreSQL日期类型处理的文章就介绍到这了,更多相关PostgreSql日期类型处理内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

标签

发表评论