1

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

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

就像如果 p_time < current_time then

——做点什么

任何人?

谢谢

4

1 回答 1

1

仅比较日期:

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

比较日期与时间:

if (v_some_dtime > current) then
  --...
end if
于 2013-07-05T19:04:35.020 回答