标签: sql arrays impala
例如,如上所述,我们有一个表
ID content 1 [] 2 [] 3 [{"name":"Jack", "age":18, "title": "MR"}] ... ...
如何获取内容列具有值的所有行。
select * from t, t.content where t.content is not null
以上代码不适用于arraylist。谁能提供任何建议?