Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何比较informix存储过程中的当前时间?
让我坐下我 hv 一个 p_time 参数我想将它与当前时间进行比较
就像如果 p_time < current_time then
——做点什么
任何人?
谢谢
仅比较日期:
if (v_some_date < today) then --... end if
比较日期与时间:
if (v_some_dtime > current) then --... end if