SELECT * from studentdetails WHERE age IN (34,54,42,34,56,67); SELECT * from studentdetails WHERE age NOT IN (34,54,42,34,56,67); SELECT * from studentdetails WHERE age>35 AND id>10; SELECT * from ...
This is a sample repository that illustrates how to read/write from/to Kafka topics while filtering the data on the fly, using a lookup table. There are in principle two options to implement the ...