From a5f3ba1c62fece189e6b4cbbc89c422f2d3492b0 Mon Sep 17 00:00:00 2001 From: dingbo Date: Mon, 22 Aug 2022 16:48:47 +0800 Subject: [PATCH] docs: fix link --- docs/en/05-develop/03-insert-data.md | 2 +- docs/en/05-develop/04-query-data.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/en/05-develop/03-insert-data.md b/docs/en/05-develop/03-insert-data.md index a3eb34c684..d8a9c78a8b 100644 --- a/docs/en/05-develop/03-insert-data.md +++ b/docs/en/05-develop/03-insert-data.md @@ -31,7 +31,7 @@ Data can be inserted into multiple tables in the same SQL statement. The example INSERT INTO d1001 VALUES (1538548685000, 10.3, 219, 0.31) (1538548695000, 12.6, 218, 0.33) d1002 VALUES (1538548696800, 12.3, 221, 0.31); ``` -For more details about `INSERT` please refer to [INSERT](/taos-sql/insert). +For more details about `INSERT` please refer to [INSERT](https://docs.tdengine.com/cloud/taos-sql/insert). ## Connector Examples diff --git a/docs/en/05-develop/04-query-data.md b/docs/en/05-develop/04-query-data.md index 9dc0d25957..4b5fe458e4 100644 --- a/docs/en/05-develop/04-query-data.md +++ b/docs/en/05-develop/04-query-data.md @@ -33,7 +33,7 @@ Query OK, 2 row(s) in set (0.001100s) To meet the requirements of varied use cases, some special functions have been added in TDengine. Some examples are `twa` (Time Weighted Average), `spread` (The difference between the maximum and the minimum), and `last_row` (the last row). Furthermore, continuous query is also supported in TDengine. -For detailed query syntax please refer to [Select](/taos-sql/select). +For detailed query syntax please refer to [Select](https://docs.tdengine.com/cloud/taos-sql/select). ## Aggregation among Tables @@ -66,7 +66,7 @@ taos> SELECT count(*), max(current) FROM meters where groupId = 2 and ts > now - Query OK, 1 row(s) in set (0.002136s) ``` -Join queries are only allowed between subtables of the same STable. In [Select](/taos-sql/select), all query operations are marked as to whether they support STables or not. +Join queries are only allowed between subtables of the same STable. In [Select](https://docs.tdengine.com/cloud/taos-sql/select), all query operations are marked as to whether they support STables or not. ## Down Sampling and Interpolation @@ -113,7 +113,7 @@ In many use cases, it's hard to align the timestamp of the data collected by eac Interpolation can be performed in TDengine if there is no data in a time range. -For more details please refer to [Aggregate by Window](/taos-sql/interval). +For more details please refer to [Aggregate by Window](https://docs.tdengine.com/cloud/taos-sql/interval). ## Connector Examples -- GitLab