NOW
Description
Returns the current Datetime based on the context user's local time zone.
Syntax
NOW() -> Datetime
Examples
NOW()
-- Returns the current Datetime (e.g., 09/19/2024, 21:33:46).ADD_DAYS(NOW(), 3)
-- Returns the Datetime 3 days after the current Datetime (e.g., 09/22/2024, 21:33:46).Tips
Use TODAY function if you prefer a date-only value.
Use the ADD_DAYS function to add days to a Datetime.