Closed Minyus closed 1 year ago
Hi, thank you :-)
The syntax is a little different in SPyQL. Please try:
SELECT count_distinct_agg(col1) ...
You can check the reference for more aggregation functions: https://spyql.readthedocs.io/en/latest/reference.html#module-spyql.agg
Please let me know if you were able to do what you needed. Thanks!
Ok, I'll try. Thank you!
Worked like a charm! Thank you!
Thank you for the great tool!
I'd like to request feature which works like
COUNT(DISTINCT col1) ... GROUP BY
of SQL. I triedcount_agg(distinct col1)
, but got syntax error.