Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
Description
https://ci.apache.org/projects/flink/flink-docs-release-1.13/docs/dev/table/sql/queries/joins/
Regular Joins description
Regular joins are the most generic type of join in which any new record, or changes to either side of the join, are visible and affect the entirety of the join result. For example, if there is a new record on the left side, it will be joined with all the previous and future records on the right side.
But, example
SELECT * FROM Orders INNER JOIN Product ON Orders.productId = Product.id
Is the following better?
SELECT * FROM Orders INNER JOIN Product
jark , looking forward to your replay.
Attachments
Issue Links
- links to