How can handles Exist ,not Exist , all and any in query
Example
SELECT P.PRODUCT_ID,
 P.PRODUCT_NAME
FROM PRODUCTS P
WHERE NOT EXISTS
 (
 SELECT  1
 FROM SALES S
 WHERE S.PRODUCT_ID = P.PRODUCT_ID);





--
View this message in context: 
http://apache-flink-user-mailing-list-archive.2336050.n4.nabble.com/How-can-handles-Exist-not-Exist-query-on-flink-tp1939.html
Sent from the Apache Flink User Mailing List archive. mailing list archive at 
Nabble.com.

Reply via email to