From 2008b1dc06d5030f572634c7f8f2ba48562fa636 Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Mon, 10 Jan 2022 18:09:00 -0500 Subject: [PATCH] Update docs to note support for VARIANCE and STDDEV (#1543) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bf8fc725961c..82089f1bd08b 100644 --- a/README.md +++ b/README.md @@ -266,9 +266,9 @@ This library currently supports many SQL constructs, including - `SELECT ... FROM ...` together with any expression - `ALIAS` to name an expression - `CAST` to change types, including e.g. `Timestamp(Nanosecond, None)` -- most mathematical unary and binary expressions such as `+`, `/`, `sqrt`, `tan`, `>=`. +- Many mathematical unary and binary expressions such as `+`, `/`, `sqrt`, `tan`, `>=`. - `WHERE` to filter -- `GROUP BY` together with one of the following aggregations: `MIN`, `MAX`, `COUNT`, `SUM`, `AVG` +- `GROUP BY` together with one of the following aggregations: `MIN`, `MAX`, `COUNT`, `SUM`, `AVG`, `VAR`, `STDDEV` (sample and population) - `ORDER BY` together with an expression and optional `ASC` or `DESC` and also optional `NULLS FIRST` or `NULLS LAST` ## Supported Functions