How to subtract 1 second from a datetime value in a Fast Formula?
How do you subtract 1 second from a datetime value in a Fast Formula?
l_my_text = '12/15/2025 00:00:00'
l_my_datetime = TO_DATE(l_my_text, 'MM/DD/YYYY HH24:MI:SS')
l_one_second_before_my_datetime = ??????
…when it isn't practical to just correct any code that compares against it?
0