We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
a few SQL based databases / data warehouses support a GROUP BY ALL statement , which groups by all columns except aggregated columns (sum, etc)
this can speed up EDA work and can be a nice addition for Polars
Examples
BigQuery https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#group_by_all
DuckDB https://duckdb.org/docs/sql/query_syntax/groupby.html
Snowflake https://docs.snowflake.com/en/sql-reference/constructs/group-by
based on discussion here #14704
The text was updated successfully, but these errors were encountered:
GROUP BY ALL
alexander-beedie
Successfully merging a pull request may close this issue.
Description
a few SQL based databases / data warehouses support a GROUP BY ALL statement , which groups by all columns except aggregated columns (sum, etc)
this can speed up EDA work and can be a nice addition for Polars
Examples
BigQuery
https://cloud.google.com/bigquery/docs/reference/standard-sql/query-syntax#group_by_all
DuckDB
https://duckdb.org/docs/sql/query_syntax/groupby.html
Snowflake
https://docs.snowflake.com/en/sql-reference/constructs/group-by
based on discussion here #14704
The text was updated successfully, but these errors were encountered: