arrow-left

All pages
gitbookPowered by GitBook
1 of 1

Loading...

now

This section contains reference documentation for the now function.

Return current time as epoch millis.

hashtag
Signature

now()

hashtag
Usage Examples

now

This function is typically used in predicate to filter on timestamp for recent data. e.g. filter data on recent 1 day(86400 seconds)

select now() AS now
FROM ignoreMe

1639150454255

SELECT * 
FROM tableName
WHERE tsInMillis > now() - 86400000