我就废话不多说了,大家还是直接看代码吧~
cast(cast((‘x' || ‘47868e22') as bit(32)) as int)
补充:postgresql中时间戳与日期的相互转换(同样适用于greenplum)
--日期转时间戳 select extract(epoch from now()); select extract(epoch from cast('2017-12-06 00:17:10' as timestamp)); --时间戳转日期 select to_timestamp(1512490630)
补充:postgresql 时间戳转换成普通时间
unix时间戳(unix timestamp),或称unix时间(unix time)、posix时间(posix time),是一种时间表示方式,定义为从格林威治时间1970年01月01日00时00分00秒起至现在的总秒数。
unix时间戳不仅被使用在unix系统、类unix系统中,也在许多其他操作系统中被广泛采用。
postgresql查询数据时,很多情况时间格式是时间戳样式的,可读性很差,需要转换成普通格式的,在查询时,转换方法如下:
select md5, to_char(to_timestamp(time),'yyyy-mm-dd hh24-mi-ss') as time from tablename;
以上为个人经验,希望能给大家一个参考,也希望大家多多支持www.887551.com。如有错误或未考虑完全的地方,望不吝赐教。