我想不出我如何處理這個問題:蜂巢 - LIKE操作
這是我的數據:
Table1: Table2:
BRAND PRODUCT SOLD
Sony Sony ABCD 1233
Apple Sony adv 1233
Google Sony aaaa 1233
IBM Apple 123 1233
etc. Apple 345 1233
IBM 13123 1233
是否有可能在那裏矗立着篩選,我有一個表的查詢品牌和總銷量? 我的想法是:
Select table1.brand, sum(table2.sold) from table1
join table2
on (table1.brand LIKE '%table2.product%')
group by table.1.brand
這是我的想法,但我總是得到一個錯誤
最大的問題是像運營商或者有沒有其他的解決辦法?
http://stackoverflow.com/questions/40628396/hive-like-operator請檢查並建議對於上面類似的Quear。 謝謝 –