如何使用具有数组属性类型的ksql进行过滤

63lcw9qa  于 2021-06-05  发布在  Kafka
关注(0)|答案(1)|浏览(359)

我有一个主题的流模式:

--root
  --name: string
  --age: integer
  --accounts: Array
    --email

我想选择所有具有email='xx'帐户的根元素
谢谢你的帮助。

yhqotfr8

yhqotfr81#

select * from t1 where accounts->email='xx'

假设表或流名称为t1。

相关问题