Closed. This question needs details or clarity。它当前不接受答案。
想要改善这个问题吗?添加详细信息,并通过editing this post来解决问题。
7年前关闭。
Improve this question
如何在PostgreSQL的timestamp列上使用最小/最大函数?
我有一列-plc_time(没有时区的时间戳),我需要从两个值中选择plc_time最大的行(该值是没有时区的时间戳)。
我应该使用转换吗?我该怎么做?
想要改善这个问题吗?添加详细信息,并通过editing this post来解决问题。
7年前关闭。
Improve this question
如何在PostgreSQL的timestamp列上使用最小/最大函数?
我有一列-plc_time(没有时区的时间戳),我需要从两个值中选择plc_time最大的行(该值是没有时区的时间戳)。
我应该使用转换吗?我该怎么做?
最佳答案
select *
from some_table
where plc_time = greatest(timestamp '2013-07-15 14:55:00', timestamp '2013-03-01 17:43:00');
关于sql - 在PostgreSQL中的时间戳上使用最小和最大函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17653872/
10-10 04:49