From cd3949c03478a08d48cd6d7629bbf5b2e22868c3 Mon Sep 17 00:00:00 2001 From: Gabor Szarnyas Date: Mon, 26 Feb 2024 22:50:48 +0100 Subject: [PATCH] Summarize: Add all columns --- docs/guides/meta/summarize.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/guides/meta/summarize.md b/docs/guides/meta/summarize.md index b2a696add7b..0ab2e03f24e 100644 --- a/docs/guides/meta/summarize.md +++ b/docs/guides/meta/summarize.md @@ -3,7 +3,8 @@ layout: docu title: Summarize --- -The `SUMMARIZE` command can be used to easily compute a number of aggregates over a table or a query. The `SUMMARIZE` command launches a query that computes a number of aggregates over all columns, including `min`, `max`, `avg`, `std` and `approx_unique`. +The `SUMMARIZE` command can be used to easily compute a number of aggregates over a table or a query. +The `SUMMARIZE` command launches a query that computes a number of aggregates over all columns (`min`, `max`, `approx_unique`, `avg`, `std`, `q25`, `q50`, `q75`, `count`), and return these along the column name, column type, and the percentage of `NULL` values in the column. ## Usage