I need to filter my list based on date time.
Example: "people who purchased 180 days ago"
However I need that the comparison be with actual date (system date), so that I don't have to filter manually every day.
I need to filter my list based on date time.
Example: "people who purchased 180 days ago"
However I need that the comparison be with actual date (system date), so that I don't have to filter manually every day.
Copyright © 2021 Jogjafile Inc.
Subtract
180
from (truncated?)SYSDATE
:Why truncate? Becuase
sysdate
function returns both date and time, so - you'd probably want to "remove" the time component.