标签: hive
当我从蜂巢中查询“喜欢”时,它看起来像
select * from table where a_column like '%http%';
它返回一些a_column不包含http的结果和一些NULL的结果。
http
NULL
我想知道我的查询语句是否认真。
有没有更严重的模式?
答案 0 :(得分:0)
请通过concat_ws以以下方式使用。
从表中选择*,其中concat_ws(',',map_values(a_column))如'%http%';