7.KSQL
3.7.1 Overview
select * from efak001 where `partition` in (0) limit 10

3.7.2 Parse JSONObject Or JSONArrays
3.7.3 Filter Query [where ... and]
Last updated
select * from efak001 where `partition` in (0) limit 10

Last updated
[{"id":123,"name":"smartloli"},{"id":456,"name":"smartloli2"},{"id":789,"name":"smartloli3"}]select JSONS(msg,'name') from topic_name where `partition` in (0) limit 10{"id":123,"name":"smartloli001"}select JSON(msg,'name') from topic_name where `partition` in (0) limit 10select JSON(msg,'name') from topic_name where `partition` in (0) and JSON(msg,'name') = 'smartloli001' limit 10kafka-eagle-01
kafka-eagle-02
kafka-eagle-02
kafka-eagle-03
kafka-eagle-03select * from topic_name where `partition` in (0) and msg = 'kafka-eagle-03' limit 10select * from topic_name where `partition` in (0) and msg like 'kafka-eagle%' limit 10select * from topic_name where `partition` in (0) and msg like '%kafka-eagle%' limit 10