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
8 changes: 4 additions & 4 deletions src/UserGuide/Master/Tree/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,10 @@ This step performs the nested sub query in from clause of the query above. The f
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
8 changes: 4 additions & 4 deletions src/UserGuide/V1.3.x/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,10 @@ This step performs the nested sub query in from clause of the query above. The f
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
8 changes: 4 additions & 4 deletions src/UserGuide/dev-1.3/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,10 @@ This step performs the nested sub query in from clause of the query above. The f
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
8 changes: 4 additions & 4 deletions src/UserGuide/latest/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -565,10 +565,10 @@ This step performs the nested sub query in from clause of the query above. The f
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ SELECT avg(count_s1) from (select count(s1) as count_s1 from root.sg.d group by(
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d.count_s1
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
8 changes: 4 additions & 4 deletions src/zh/UserGuide/V1.3.x/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ SELECT avg(count_s1) from (select count(s1) as count_s1 from root.sg.d group by(
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d.count_s1
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
8 changes: 4 additions & 4 deletions src/zh/UserGuide/dev-1.3/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ SELECT avg(count_s1) from (select count(s1) as count_s1 from root.sg.d group by(
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d.count_s1
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down
8 changes: 4 additions & 4 deletions src/zh/UserGuide/latest/User-Manual/Database-Programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -561,10 +561,10 @@ SELECT avg(count_s1) from (select count(s1) as count_s1 from root.sg.d group by(
```sql
CREATE CQ s1_count_cq
BEGIN
SELECT count(s1)
INTO root.sg_count.d.count_s1
FROM root.sg.d
GROUP BY(30m)
SELECT count(s1)
INTO root.sg_count.d(count_s1)
FROM root.sg.d G
ROUP BY(30m)
END
```

Expand Down