Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/.vuepress/sidebar/V2.0.x/en-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,10 @@ export const enSidebar = {
{ text: 'SELECT Clause', link: 'Select-Clause_apache' },
{ text: 'FROM&JOIN Clause', link: 'From-Join-Clause' },
{ text: 'WHERE Clause', link: 'Where-Clause' },
{ text: 'GROUP BY Clause', link: 'GroupBy-Clause' },
{ text: 'GROUP BY Clause', link: 'GroupBy-Clause_apache' },
{ text: 'HAVING Clause', link: 'Having-Clause' },
{ text: 'FILL Clause', link: 'Fill-Clause' },
{ text: 'ORDER BY Clause', link: 'OrderBy-Clause' },
{ text: 'FILL Clause', link: 'Fill-Clause_apache' },
{ text: 'ORDER BY Clause', link: 'OrderBy-Clause_apache' },
{ text: 'LIMIT&OFFSET Clause', link: 'Limit-Offset-Clause' },
{ text: 'Nested Queries', link: 'Nested-Queries' },
{ text: 'Common Table Expressions (CTE)', link: 'Common-Table-Expression_apache' },
Expand Down
6 changes: 3 additions & 3 deletions src/.vuepress/sidebar/V2.0.x/zh-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -238,10 +238,10 @@ export const zhSidebar = {
{ text: 'SELECT子句', link: 'Select-Clause_apache' },
{ text: 'FROM&JOIN子句', link: 'From-Join-Clause' },
{ text: 'WHERE子句', link: 'Where-Clause' },
{ text: 'GROUP BY子句', link: 'GroupBy-Clause' },
{ text: 'GROUP BY子句', link: 'GroupBy-Clause_apache' },
{ text: 'HAVING子句', link: 'Having-Clause' },
{ text: 'FILL子句', link: 'Fill-Clause' },
{ text: 'ORDER BY子句', link: 'OrderBy-Clause' },
{ text: 'FILL子句', link: 'Fill-Clause_apache' },
{ text: 'ORDER BY子句', link: 'OrderBy-Clause_apache' },
{ text: 'LIMIT&OFFSET子句', link: 'Limit-Offset-Clause' },
{ text: '嵌套查询', link: 'Nested-Queries' },
{ text: '公用表表达式(CTE)', link: 'Common-Table-Expression_apache' },
Expand Down
6 changes: 3 additions & 3 deletions src/UserGuide/Master/Table/Basic-Concept/Query-Data_apache.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ The IoTDB table model query syntax supports the following clauses:
- **SELECT Clause**: Specifies the columns to be included in the result. Details: [SELECT Clause](../SQL-Manual/Select-Clause_apache.md)
- **FROM Clause**: Indicates the data source for the query, which can be a single table, multiple tables joined using the `JOIN` clause, or a subquery. Details: [FROM & JOIN Clause](../SQL-Manual/From-Join-Clause.md)
- **WHERE Clause**: Filters rows based on specific conditions. Logically executed immediately after the `FROM` clause. Details: [WHERE Clause](../SQL-Manual/Where-Clause.md)
- **GROUP BY Clause**: Used for aggregating data, specifying the columns for grouping. Details: [GROUP BY Clause](../SQL-Manual/GroupBy-Clause.md)
- **GROUP BY Clause**: Used for aggregating data, specifying the columns for grouping. Details: [GROUP BY Clause](../SQL-Manual/GroupBy-Clause_apache.md)
- **HAVING Clause**: Applied after the `GROUP BY` clause to filter grouped data, similar to `WHERE` but operates after grouping. Details:[HAVING Clause](../SQL-Manual/Having-Clause.md)
- **FILL Clause**: Handles missing values in query results by specifying fill methods (e.g., previous non-null value or linear interpolation) for better visualization and analysis. Details:[FILL Clause](../SQL-Manual/Fill-Clause.md)
- **ORDER BY Clause**: Sorts query results in ascending (`ASC`) or descending (`DESC`) order, with optional handling for null values (`NULLS FIRST` or `NULLS LAST`). Details: [ORDER BY Clause](../SQL-Manual/OrderBy-Clause.md)
- **FILL Clause**: Handles missing values in query results by specifying fill methods (e.g., previous non-null value or linear interpolation) for better visualization and analysis. Details:[FILL Clause](../SQL-Manual/Fill-Clause_apache.md)
- **ORDER BY Clause**: Sorts query results in ascending (`ASC`) or descending (`DESC`) order, with optional handling for null values (`NULLS FIRST` or `NULLS LAST`). Details: [ORDER BY Clause](../SQL-Manual/OrderBy-Clause_apache.md)
- **OFFSET Clause**: Specifies the starting position for the query result, skipping the first `OFFSET` rows. Often used with the `LIMIT` clause. Details: [LIMIT and OFFSET Clause](../SQL-Manual/Limit-Offset-Clause.md)
- **LIMIT Clause**: Limits the number of rows in the query result. Typically used in conjunction with the `OFFSET` clause for pagination. Details: [LIMIT and OFFSET Clause](../SQL-Manual/Limit-Offset-Clause.md)

Expand Down

Large diffs are not rendered by default.

Loading