Is it possible to build the conditional flow described below? I’ve tried with the “Insert if/else column” but that doesn’t seem to help in this case.
We’re running a query against a read only Postgres database that counts sign ups by unique IP in the last 90 days. So the results look something like this:
ip, count
127.0.0.1, 54
127.0.0.2, 33
127.0.0.3, 20
…
…
And we’d like to run this query every day, and only send the results as a CSV attachment via email if the count column is greater than a given value. Is that possible currently?