how can handles Any , All query on flink
Example
SELECT model, price
FROM Laptop
WHERE price > ALL
(SELECT price
FROM PC);
Example on any
SELECT DISTINCT maker
FROM Product
WHERE model > ANY
(SELECT model
FROM PC);
--
View this message in context:
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/how-can-handles-Any-All-query-on-flink-tp1997.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at
Nabble.com.
