How do we window join using SQL client in Flink SQL query. Windowing in the same fashion as mention in link below https://ci.apache.org/projects/flink/flink-docs-release-1.9/dev/stream/operators/joining.html
Sample Query that requires windowing
SELECT sourceKafka.* FROM sourceKafka INNER JOIN badips ON sourceKafka.source.ip
=badips.ip
sourceKafka is source-table, with continuous stream of kafka badips is another source-table