在Postgres中将时间戳转换为unix_timestamp

时间:2019-05-14 10:48:34

标签: sql postgresql unix-timestamp

我需要在Postgres中将时间戳转换为unix_timestamp。

时间戳采用以下格式:2019-05-09 11:40:01

谢谢

1 个答案:

答案 0 :(得分:1)

使用extract(epoch from . . . )

select extract(epoch from '2019-05-09 11:40:01'::timestamp)