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
9 changes: 8 additions & 1 deletion src/.vuepress/sidebar_timecho/V2.0.x/en-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,14 @@ export const enSidebar = {
prefix: 'User-Manual/',
children: [
{ text: 'Data Sync', link: 'Data-Sync_timecho' },
{
text: 'Timeseries Featured Analysis',
collapsible: true,
children: [
{ text: 'Pattern Query', link: 'Pattern-Query_timecho' },
{ text: 'Window Function', link: 'Window-Function_timecho' },
],
},
{ text: 'UDF', link: 'User-defined-function' },
{
text: 'Security Management',
Expand All @@ -134,7 +142,6 @@ export const enSidebar = {
},
{ text: 'Tiered Storage', link: 'Tiered-Storage_timecho' },
{ text: 'Tree-to-Table Mapping', link: 'Tree-to-Table_timecho' },
{ text: 'Timeseries Featured Analysis', link: 'Timeseries-Featured-Analysis_timecho' },
{
text: 'System Maintenance',
collapsible: true,
Expand Down
9 changes: 8 additions & 1 deletion src/.vuepress/sidebar_timecho/V2.0.x/zh-Table.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,14 @@ export const zhSidebar = {
prefix: 'User-Manual/',
children: [
{ text: '数据同步', link: 'Data-Sync_timecho' },
{
text: '时序特色分析',
collapsible: true,
children: [
{ text: '模式查询', link: 'Pattern-Query_timecho' },
{ text: '窗口函数', link: 'Window-Function_timecho' },
],
},
{ text: 'UDF', link: 'User-defined-function' },
{
text: '安全管理',
Expand All @@ -125,7 +133,6 @@ export const zhSidebar = {
},
{ text: '多级存储', link: 'Tiered-Storage_timecho' },
{ text: '树转表视图', link: 'Tree-to-Table_timecho' },
{ text: '时序特色分析', link: 'Timeseries-Featured-Analysis_timecho' },
{
text: '系统运维',
collapsible: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ This guide will assist you in quickly installing and deploying IoTDB. You can qu

2. Data Insertion & Updates: IoTDB provides multiple methods for inserting real-time data, and supports data write-back. For basic data insertion and updating operations, please see [Write&Updata Data](../Basic-Concept/Write-Updata-Data_timecho.md)

3. Data Querying: IoTDB offers a rich set of data querying capabilities. For a basic introduction to data querying, please see [Query Data](../Basic-Concept/Query-Data.md). It includes pattern queries and window functions applicable to time-series featured analysis. For detailed introductions, please refer to [Timeseries Featured Analysis](../User-Manual/Timeseries-Featured-Analysis_timecho.md).
3. Data Querying: IoTDB offers a rich set of data querying capabilities. For a basic introduction to data querying, please see [Query Data](../Basic-Concept/Query-Data.md). It includes pattern queries and window functions applicable to time-series featured analysis. For detailed introductions, please refer to [Pattern Query](../User-Manual/Pattern-Query_timecho.md) and [Window Function](../User-Manual/Window-Function_timecho.md).

4. Data Deletion: IoTDB supports two deletion methods: SQL-based deletion and automatic expiration deletion (TTL).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ frameBound
;
```

For more detailed introductions to the features, please refer to: [Window Functions](../User-Manual/Timeseries-Featured-Analysis_timecho.md#_2-window-functions)
For more detailed introductions to the features, please refer to: [Window Function](../User-Manual/Window-Function_timecho.md)

### 4.2 Usage Examples

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ MATCH_RECOGNIZE (
* SUBSET: Optional. Used to merge rows matched by multiple basic pattern variables into a single logical set.
* DEFINE: Used to define the basic pattern variables for the row pattern.

For more detailed introductions to the features, please refer to:[Pattern Query](../User-Manual/Timeseries-Featured-Analysis_timecho.md#_1-pattern-query)
For more detailed introductions to the features, please refer to:[Pattern Query](../User-Manual/Pattern-Query_timecho.md)

## 2. Usage Examples

Expand Down
988 changes: 988 additions & 0 deletions src/UserGuide/Master/Table/User-Manual/Pattern-Query_timecho.md

Large diffs are not rendered by default.

Loading