Reputation: 6332
I looked through Flink official documentation ,but didn't find what kinds of SQL that flink has supported
Upvotes: 0
Views: 53
Reputation: 43454
Flink’s SQL support is based on Apache Calcite, which implements the SQL standard. The SQL support is not yet feature complete, but lately each new release has brought some exciting new features -- such as temporal tables and match_recognize, which were added in Flink 1.7.
I believe this part of the documentation provides the details you are looking for.
For learning how to work with Flink SQL, I recommend the Apache Flink® SQL Training on github.
Upvotes: 2