Flink Queries
Flink SQL supports querying data with SELECT statements and using different types of operations.
You can query data from a table using the SELECT statement.
Query | Description | Option |
---|---|---|
SELECT | Querying data from a table using different operations. |
|
The following table summarizes the supported operations for SELECT statement in SQL Stream
Builder:
For more information about Flink SQL, see the Apache Flink documentation.
Operation | Description | Option |
---|---|---|
WHERE | Querying data based on adding filters. |
|
JOIN | Joining data from tables based on an equivalent column. |
|
GROUP BY | Grouping results using built-in or user defined functions. |
|
ORDER BY | Ordering results to be sorted based on a specified expression. |
|