Anyone know the pinot SQL to do something like thi...
# random
h
Anyone know the pinot SQL to do something like this? “find records in last 1 day”
Copy code
"select * from table_1 where time > now() - 1 day" OR select * from table_1 where time > now() - 86400
j
Copy code
SELECT * 
FROM tableName
WHERE tsInMillis > now() - 86400000
Something like above should work.