informix存储过程中的当前时间

时间:2013-07-04 15:55:31

标签: stored-procedures informix

如何比较informix存储过程中的当前时间?

让我坐下来我有一个p_time参数我想将它与当前时间进行比较

就像p_time< current_time然后

- 做一些事情

感谢

1 个答案:

答案 0 :(得分:1)

仅比较日期:

if (v_some_date < today) then
  --...
end if

将日期与时间进行比较:

if (v_some_dtime > current) then
  --...
end if