PostgreSQL中timestamp相关的SQL语句

前端之家收集整理的这篇文章主要介绍了PostgreSQL中timestamp相关的SQL语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

获取时区

  1. select extract(timezone from timestamp with time zone '2001-02-16 20:38:40.12-08');
  2. Result: 28800

获取时区的小时数

  1. select extract(timezone_hour from timestamp with time zone '2001-02-16 20:38:40.12-08');
  2. Result: 8

获取时区的分钟数

  1. select extract(timezone_minute from timestamp with time zone '2001-02-16 20:38:40.12-08');
  2. Result0

获取世纪

  1. select extract(century from timestamp '2000-12-16 12:21:13');
  2. Result: 20
  3.  
  4. select extract(century from timestamp '2001-02-16 20:38:40');
  5. Result: 21

获取年份

  1. select extract(year from timestamp '2001-02-16 20:38:40');
  2. Result: 2001

获取季度(1-4)

  1. select extract(quarter from timestamp '2001-02-16 20:38:40');
  2. Result: 1

获取 timestamp 的月数(1-12) & interval 的月数对12取模(0-11)

  1. select extract(month from timestamp '2001-02-16 20:38:40');
  2. Result: 2
  3.  
  4. select extract(month from interval '2 years 3 months');
  5. Result: 3
  6.  
  7. select extract(month from interval '2 years 13 months');
  8. Result: 1

获取周数

  1. select extract(week from timestamp '2001-02-16 20:38:40');
  2. Result: 7

获取 timestamp 的天数(1-31) & interval 的总天数

  1. select extract (day from timestamp '2001-02-16 20:38:40');
  2. Result: 16
  3.  
  4. select extract(day from interval '40 days 1 minute');
  5. Result: 40

获取 timestamp 的天数(Sunday(0) - Saturday(6))

  1. select extract(dow from timestamp '2001-02-16 20:38:40');
  2. Result: 5

获取 timestamp 的天数(Monday(1) - Sunday(7))

  1. select extract(isodow from timestamp '2001-02-18 20:38:40');
  2. Result: 7

获取 timestamp 的天数(1-365/366)

  1. select extract(doy from timestamp '2001-02-16 20:38:40');
  2. Result: 47

获取小时(0-23)

  1. select extract(hour from timestamp '2001-02-16 20:38:40');
  2. Result: 20

获取分钟(0-59)

  1. select extract(minute from timestamp '2001-02-16 20:38:40');
  2. Result: 38

获取秒(0-59)

  1. select extract(second from timestamp '2001-02-16 20:38:40');
  2. Result: 40
  3.  
  4. select extract(second from time '17:12:28.5');
  5. Result: 28.5

获取总秒数(对于 timestamp 从 1970-01-01 00:00:00 UTC 开始计算)

  1. select extract(epoch from timestamp with time zone '2001-02-16 20:38:40.12-08');
  2. Result: 982384720.12
  3.  
  4. select extract(epoch from interval '5 days 3 hours');
  5. Result: 442800

猜你在找的Postgre SQL相关文章