9

如何在 PostgreSQL 中的时间戳列上使用函数最小/最大?
我有一列 - plc_time(没有时区的时间戳),我需要从两个值中选择 plc_time 最大的行(该值是没有时区的时间戳)。
我应该使用转换吗?我该怎么做?

4

1 回答 1

12
select *
from some_table
where plc_time = greatest(timestamp '2013-07-15 14:55:00', timestamp '2013-03-01 17:43:00');
于 2013-07-15T12:54:38.177 回答