Hi!
Is there a way to insert a SQL HAVING
clause?
SELECT
COUNT(*) AS count,
source
FROM
events
GROUP BY 2
HAVING COUNT(*) > 20
ORDER BY 1
I haven’t found it in any obvious place. Custom filters don’t have access to groups, and measure
filters don’t have a sql
clause or anything.
Thanks!