2

如何将接收到的时间/日期插入 time_t 结构到具有“没有时区的时间戳”类型的列中?

以前我使用 int8 作为数据类型,而 time_t 非常适合,但我想知道如何使用 PQexecParams 调用来处理时间戳字段(最好不要将 time_t 从调用程序转换为字符串)。

4

1 回答 1

5

使用to_timestamp函数。例子:

 select to_timestamp(1000000000)::timestamp;

结果:

   to_timestamp     
---------------------  
 2001-09-09 03:46:40
1 行)
于 2012-11-15T14:19:05.947 回答