我有一个PostgreSql,它为每一行创建一个带时区的时间戳。但是现在,当我尝试打印这个时间戳时,我得到以下内容:"2013-03-06就是+ 01:00"
首先为什么说00:00:00 ?
其次,我怎么把它转换成这样的东西:
06.03.2013 07:10:13
或
例如:"12 sec ago", "1 day and a hour ago"
谢谢马文
您必须使用python模块的datetime。从该模块中,您可以将字符串转换为日期并格式化该日期。
>>> from datetime import datetime
>>> datetime.strptime('06.03.2013 07:10:13', '%d.%m.%Y %H:%M:%S').strftime('%Y-%d-%m %H:%M:%S%Z')
'2013-06-03 07:10:13'
你得到00:00:00
作为时间部分可能是因为有人只插入了日期而没有时间部分。查看:
select current_date, current_timestamp;
你将得到:
"2013-03-07";"2013-03-07 08:31:59.098661+01"
当你插入或更新时间戳列只有日期,那么时间部分将削减到00:00:00
。如果你想要日期、时间和时区,你应该使用current_timestamp
。
将日期转换为字符串可以在服务器端和客户端完成。PostgreSQL有很多datetime函数,PostgreSQL的格式函数和Python函数都可以使用。
:
select to_char(current_timestamp, 'DD.MM.YY HH12:MI:SS')
,你会得到类似这样的内容:
"07.03.13 08:40:50"
拉法达回答了Python格式化datetime对象。
当你想显示现在和某个日期时间之间的差异时,你可以使用PostgreSQL age()
函数:
select age(timestamp '2003-03-01');
结果:"10 years 6 days"
当然Python也可以显示时间戳之间的差异:
import datetime
dt_old = datetime.datetime.strptime('2001-12-31 22:33:44', '%Y-%m-%d %H:%M:%S')
dt_diff = (datetime.datetime.today() - dt_old)
print(dt_diff)
我结果:4083 days, 10:16:14.140000