diff --git a/docs/en/10-programming/04-query.md b/docs/en/10-programming/04-query.md index 61e1d1dbf374b25e279e7277fee004aaee56085e..c7ab775ca8cf4607f15a66f7e112fd74e28ef1c2 100644 --- a/docs/en/10-programming/04-query.md +++ b/docs/en/10-programming/04-query.md @@ -46,7 +46,7 @@ In summary, records across subtables can be aggregated by a simple query on thei ### Example 1 -In [TDengine CLI](../../tool/cli) `taos`, use the SQL below to get the average voltage of all the meters in California grouped by location. +In [TDengine CLI](../../tools/cli) `taos`, use the SQL below to get the average voltage of all the meters in California grouped by location. ```sql title="SQL" SELECT location, AVG(voltage) FROM test.meters GROUP BY location;