1. 程式人生 > >hive簡單資料分析

hive簡單資料分析

簡單查詢分析

select brand_id from user_log limit 10; -- 檢視日誌前10資料

好像也沒啥,和SQL相同,,limit取前多少條  , as取別名

查詢條數統計分析

count()聚合函式

select count(*) from user_log; -- 用聚合函式count()計算出表內有多少條行資料

distinct不重複

select count(distinct user_id) from user_log; -- 在函式內部加上distinct,查出user_id不重複的資料有多少條

where .. and .. 新增限制條件

select count(*) from user_log where action='2' and brand_id=2661;