|
@@ -7,9 +7,9 @@ eKuiper provides a variety of elements for building queries. They are summarized
|
|
| --------------------- | ------------------------------------------------------------ |
|
|
| --------------------- | ------------------------------------------------------------ |
|
|
| [SELECT](#select) | SELECT is used to retrieve rows from input streams and enables the selection of one or many columns from one or many input streams in eKuiper. |
|
|
| [SELECT](#select) | SELECT is used to retrieve rows from input streams and enables the selection of one or many columns from one or many input streams in eKuiper. |
|
|
| [FROM](#from) | FROM specifies the input stream. The FROM clause is always required for any SELECT statement. |
|
|
| [FROM](#from) | FROM specifies the input stream. The FROM clause is always required for any SELECT statement. |
|
|
-| [JOIN](#join) | JOIN is used to combine records from two or more input streams. JOIN includes LEFT, RIGHT, FULL & CROSS. |
|
|
|
|
|
|
+| [JOIN](#join) | JOIN is used to combine records from two or more input streams. JOIN includes LEFT, RIGHT, FULL & CROSS. Join can apply to multiple streams join or stream/table join. To join multiple streams, it must run within a [window](./windows.md). |
|
|
| [WHERE](#where) | WHERE specifies the search condition for the rows returned by the query. |
|
|
| [WHERE](#where) | WHERE specifies the search condition for the rows returned by the query. |
|
|
-| [GROUP BY](#group-by) | GROUP BY groups a selected set of rows into a set of summary rows grouped by the values of one or more columns or expressions. |
|
|
|
|
|
|
+| [GROUP BY](#group-by) | GROUP BY groups a selected set of rows into a set of summary rows grouped by the values of one or more columns or expressions. It must run within a [window](./windows.md). |
|
|
| [ORDER BY](#order-by) | Order the rows by values of one or more columns. |
|
|
| [ORDER BY](#order-by) | Order the rows by values of one or more columns. |
|
|
| [HAVING](#having) | HAVING specifies a search condition for a group or an aggregate. HAVING can be used only with the SELECT expression. |
|
|
| [HAVING](#having) | HAVING specifies a search condition for a group or an aggregate. HAVING can be used only with the SELECT expression. |
|
|
|
|
|