Merge branch 'master' into fix-v2-api-nav

pull/5601/head
Jason Stirnaman 2024-09-18 14:51:59 -05:00 committed by GitHub
commit 0e361f437e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 2 deletions

View File

@ -224,10 +224,11 @@ measurement.
{{% expand "Group query results by tags that start with `l`" %}}
```sql
SELECT "water_level",location FROM "h2o_feet" GROUP BY /l/
SELECT MAX("water_level"),location FROM "h2o_feet" GROUP BY /l/
```
This query uses a regular expression to group by tags that start with `l`. With the sample NOAA water dataset, results are grouped by the `location` tag.
This query uses a regular expression to group by tags that start with `l`.
With the sample NOAA water dataset, results are grouped by the `location` tag.
{{% /expand %}}