I am running a query in which I would like to use the timestamp column to only show results from the last 15 minutes. I have checked this code on other platforms and it works fine. I think Dremio does not like the DateDiff Function.
SELECT *
FROM Table
WHERE DATEDIFF(MINUTE, [DateTimeColumn], getdate()) <= 15