3atv精品不卡视频,97人人超碰国产精品最新,中文字幕av一区二区三区人妻少妇,久久久精品波多野结衣,日韩一区二区三区精品

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 综合教程 >内容正文

综合教程

【天池竞赛系列】阿里移动推荐算法思路解析

發布時間:2023/12/19 综合教程 22 生活家
生活随笔 收集整理的這篇文章主要介紹了 【天池竞赛系列】阿里移动推荐算法思路解析 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

賽題地址:http://tianchi.aliyun.com/competition/information.htm?raceId=1

登錄就可以下載數據

從4月到7月,學習了非常多也收獲了非常多

題目就不多說了。一句話表達就是依據過去一個月的行為預測14年12月19號的購買情況。

看題目貌似推薦算法。自然就有隊伍想到用協同過濾什么的。當然效果不好。

首先是特征的問題,然后是這是基于行為的相似,不太類似用戶和商品類似的ItemCF。UserCF,還有非常多其它的原因。比方我買過一部手機,難道還要推薦我再買其它類似的手機嗎,當然這個比喻不太恰當。

最后還是歸為2分類問題,當然從多分類也能夠解決這個題目。

算法問題:既然二分類就要用到分類算法。從第一賽季和第二賽的實戰情況來看,個人比較推薦的算法是C45,隨機深林。GBDT。LR,數據量大的時候也能夠增加并行的神經網絡,之前天貓推薦算法第一名就是使用了自己并行化的神經網絡。

訓練集測試集構建問題:然后怎么建模呢,怎樣選取訓練集測試集。

既然是預測一天的購買情況,那我們一樣能夠把18號當作未知。來構建模型預測18號的購買情況。

那么我們能夠把18號的購買與否來給18號前的數據打標簽。形成UIR對(user,item,result)

在第一賽季時間充足的情況下事實上還能夠弄個訓練集和驗證集。也就是用17號給之前的數據打標簽做訓練集,18號給之前的數據打標簽做驗證集。19號前的數據做線上測試集(19號的答案比賽結束后也沒有給出)

數據不平衡問題:第一賽季的數據正負樣本比例我忘了,第二賽季的好像是1:300來著,也就是說必須得採樣了,詳細採樣比例還得自己做實驗,在第二賽季我們的採樣比例是1:10——1:14之間。

數據預處理問題:第一賽季數據量僅僅有1000W左右。預處理效果一般般。第二賽季效果就出來了,數據量58E。

由于有可能有異經常使用戶的出現,比方一天點擊上萬次。或者點擊非常多從不購買等問題。一般從兩個方面來考慮。要么過濾異經常使用戶的全部數據,要么僅僅取近期幾天(3-7天都能夠)出現過的用戶和商品(這個思路是決賽第七名隊伍的)。

特征問題:原始數據有例如以下字段。用戶ID,商品ID,商品類別ID,時間(精確到小時),地理位置。行為(1234)

首先我們能夠劃分特征類別。比方分為用戶—商品類特征,用戶—商品類別類特征,商品—商品類別特征,商品類特征,用戶類特征,商品類別類特征,交叉特征(各種特征進行有意義的交叉乘除)等幾個方面。

另外一定要做特征選擇,我採訪過一些top50選手,他們特征基本都在100-400之間。就我們隊傻傻的搞了800,真是哭瞎在廁所。

特征劃分粒度問題:能夠劃分為月,周,天,小時。當然小時取值24個多了點,能夠進行切片,在做過初步數據統計之后會發現購買時間熱段和冷段,來適當調整時間片長度。

模型融合問題:多模型融合效果會較單模型有提升。當然特征夠好的情況下提升不太明顯。融合方法通常是多次不同比例不同採樣不同參數不同模型不同權值融合。

還有一個思路是做級聯,也就是先用訓練預測數據都超級快的LR,把正負樣本比例調到1:1或者1:2之類的。為啥比例是這樣呢,能夠先自己思考下。由于在這里比例會將80%未購買的樣本過濾掉(實際上90%都有可能)并且過濾掉的未購買樣本實際上也確實是沒購買的。

這樣有助于提高后面GBDT等決策樹模型的精度。還有個思路就是把其它模型得到的概率作為特征,這點比較重要。

補充點重要的東西:不要盲目迷信哪種算法吊什么的。沒有最吊的算法。僅僅有更吊的思路。思路決定一切,這一切都反應在特征和一些細節上。我們隊踩過的一些坑大概就是沒用MR,也不會MR,沒做預處理,沒做特征選擇。沒設計時間切片的特征,倒是設計了1000+無用的特征,結果GBDT僅僅支持800,就隨便扔了800個進去,結果可想而知。

我們隊的成績在第一賽季是10.09%分

第二賽季是7.7%分

非常遺憾沒進前50,最后奉上3位決賽前10名大神的特征,感謝他們提供的特征方案。假設這三位大神看到了介意的話跟我說聲。

特征版本號0(我們隊的特征,沒啥參考性。反面教材還是能夠的):

用戶近期1/2/3/5/7/15/30天有多少天交互隨意品牌并除以1,,3,7,15,30得到交互率
用戶近期1/2/3/5/7/15/30天有多少天購買隨意品牌 并除以1,3,7,15,30得到購買率
用戶近期1/2/3/5/7/15/30天購買隨意品牌與點擊/收藏/加購物車比
用戶近期一次購買隨意品牌的時間100一周前,010一周內,001三天內
用戶近期1/2/3/5/7/15/30天購買/收藏/瀏覽/加購物車過的不同品牌/商品的個數
雙12當天交互。購買,購買除以交互
雙12當天交互/購買占30天交互購買多少
用戶有多少次對同一個品牌/商品在不同天購買/反復購買
近期1,2,3,5,7,15,30天定位數
用戶交互過多少不同品牌/商品。購買除以交互
成交量變化趨勢,近期5天每天購買數,前面>=后面為1,否則為0。共4位,再加上4位的和
用戶交互購買率
用戶近期1/2/3/5/7/15/30天交互次數和購買率
用戶近期第1/2/3/4/5/6/7/8天交互購買次數購買率
用戶近期第1/2/3/4/5/6/7/8/9/10個2天交互購買次數
用戶近期第1/2/3/4/5/6/7/8/9/10個3天交互購買次數購買率
用戶近期第1/2/3/4個7天交互購買次數購買率
用戶近期第1/2/3個10天交互購買次數購買率
用戶近期第1/2個15天交互購買次數購買率
用戶近期第1/2/3/4/5/6/7/8天有多少不同一時候間點,訪問間隔
品牌近期1/2/3/5/7/15/30天被多少不同用戶交互/購買 和購買率
近期1,2,3,5,7,15,30天品牌總購買/收藏/購物車/瀏覽數,以及總購買數除以收藏數/購物車/點擊
品牌總共同擁有多少人反復購買/在不同天反復購買/在不同周反復購買,對該品牌反復購買的人數除以一共購買的人數(按人算,不是按次算)
品牌最后一次被隨意用戶購買的時間。100三天前,010三天內。001近期一天
成交量變化趨勢,近期5天每天購買數,前面>=后面為1。否則為0,共4位,再加上4位的和
雙12當天交互,購買,購買除以交互。雙12當天交互/購買占30天交互購買多少
品牌下有多少商品
品牌近期1/2/3/5/7/15/30天交互次數和購買率
近期1/2/3/5/7/15/30天類別交互購買量除以類別下的商品數
類別近期第1/2/3/4/5/6/7/8/9/10個2天交互購買次數
類別近期第1/2/3/4/5/6/7/8/9/10個3天交互購買次數購買率
類別近期第1/2/3/4個7天交互購買次數購買率
類別近期第1/2/3個10天交互購買次數購買率
類別近期第1/2個15天交互購買次數購買率
用戶最后一次交互當前品牌距離用戶最后一次交互隨意品牌相隔多少天
當前用戶與當前品牌的最后一個交互天的前一天,當天和后一天這3天中一共點擊/購買/收藏/加購物車了多少次其它品牌
用戶交互當前品牌的近期/第2近/第3近的交互天的PV數/ 加購物車數/購買數/收藏數以及時間(倒數第幾天)
用戶交互當前品牌的最遠一個交互天的PV數/購買數/收藏數/加購物車數以及時間
用戶近期1/2/3/5/7/15/30天有多少天有交互/購買當前品牌
近期1,2,3,5,7,15,30天定位數
是否是用戶喜歡的類別(提取用戶交互量前10的類別)
近期1,2,3,5,7,15,30天用戶對當前品牌購買除以瀏覽/收藏/加購物車
用戶近期1/2/3/4/5/7/15/30天有多少天對當前品牌存在純交互日(這里的純交互日是指僅僅瀏覽/收藏/加購物車了當前品牌/當前商品)
近期幾天次用戶對此品牌購買情況,1000一周前購買,0100一周內購買,0010三天內購買。0001近期一天購買
用戶對此品牌交互了多少個不同天
用戶購買此品牌前交互的平均數
用戶交互該品牌的總次數除以用戶總交互次數
商品近期1/2/3/5/7/15/30天被多少不同用戶交互/購買 和購買率
近期1,2,3,5,7,15,30天商品總購買/收藏/購物車/瀏覽數,以及總購買數除以收藏數/購物車/點擊
商品總共同擁有多少人反復購買/在不同天反復購買/在不同周反復購買,對該品牌反復購買的人數除以一共購買的人數(按人算。不是按次算)
商品最后一次被隨意用戶購買的時間1000一周前。0001近期一天
不同地理位置數
成交量變化趨勢,近期5天每天購買數。前面>=后面為1,否則為0。共4位,再加上4位的和
雙12當天交互,購買,購買除以交互,雙12當天交互/購買占30天交互購買多少
商品近期1/2/3/5/7/15/30天交互次數和購買率
商品近期第1/2/3/4/5/6/7/8/9/10個2天交互購買次數
商品近期第1/2/3/4/5/6/7/8/9/10個3天交互購買次數購買率
商品近期第1/2/3/4個7天交互購買次數購買率
商品近期第1/2/3個10天交互購買次數購買率
商品近期第1/2個15天交互購買次數購買率
用戶近期1/2/3/5/7/15/30天有多少天對當前商品存在純交互日
用戶近期1,2,3,5,7,15,30天對該商品交互次數
用戶過去購買一個商品前的交互次數的最小值和均值相加的值減去此條記錄次數*2的值取絕對值
增加購物車時間1000三天前,0100近期第三天,0001近期一天
購買時間 1000一周前,0100一周內,0010三天內,0001近期一天,0000未購買
瀏覽時間,10,01
近期1,2,3,5,7,15,30天定位數
商品最后一次被其它隨意用戶交互/購買的時間 。1000三天曾經,0100三天內,0010兩天內,0001近期一天
哪天收藏,100一周前,010一周內,001三天內000未收藏
用戶對此商品交互了多少個不同天
用戶交互該商品的總次數除以用戶總交互次數
用戶交互該商品次數乘以用戶轉化率
此條記錄交互次數占近期兩天的交互次數比例
記錄交互次數
近期1/2/3/5/7/15/30天占類別交互量和購買量多少

特征版本號1:

下面是阿里移動推薦算法用到的特征、如無特別說明。則每項特征都是以1、2、4、7、14、21、28作為周期分別計算。

且在計算時間特征時、都是以小時為單位。

一、用戶-商品特征

1、用戶對商品點擊、收藏、加購物車、購買的近期時間。

2、用戶對商品點擊、收藏、加購物車、購買的次數

3、按時間分段,且同樣粒度的時間段之間不重疊,分別統計用戶對商品的點擊、收藏、加購物車、購買的次數,分段粒度分別為6小時、12小時、1天、3天、7天、14天。因為該特征分數提升比較小,實際并沒有計算全部分段。比方6小時為粒度的僅僅取了前兩段

ps:不重疊分段的特征沒有按周期分別計算,下同

二、用戶-商品、用戶-類別組合特征

1、用戶對除去該商品的同類其它商品的點擊、收藏、加購物車、購買次數。

2、按時間分段且同樣粒度的時間段之間不重疊對特征1進行計算。類似用戶-商品特征3

3、用戶對該商品的近期點擊、收藏、加購物車、購買時間減去同類其它商品的近期點擊、收藏、加購物車、購買時間(點擊-點擊...)

4、用戶對該商品的近期點擊、收藏、加購物車、購買時間減去同類其它商品的近期購買時間

5、用戶對商品的點擊量減去用戶對同類其他商品的平均點擊量

三、用戶特征(子集和全集分別計算該類特征。其它大類特征僅僅在商品子集計算)

1、用戶近期點擊、收藏、加購物車、購買時間

2、用戶點擊、收藏、加購物車、購買量

3、用戶轉化率即用戶購買量分別除以用戶點擊、收藏、加購物車這三類行為數

4、用戶點擊、收藏、加購物車、購買量在28天里的均值方差(不按周期計算)

四、商品特征

1、商品被點擊、收藏、加購物車、購買量

2、商品被購買轉化率

3、商品被點擊、收藏、加購物車、購買量在28天里的均值方差

五、類別特征

1、該類商品被點擊、收藏、加購物車、購買量

2、該類商品轉化率

六、交叉特征

1、用戶對商品近期點擊、收藏、加購物車、購買時間減去該用戶近期點擊、收藏、加購物車、購買時間

2、用戶對商品近期點擊、收藏、加購物車、購買時間減去該用戶購買時間

3、用戶對商品點擊、收藏、加購物車、購買量減去用戶平均點擊、收藏、加購物車、購買量

4、用戶對商品點擊、收藏、加購物車、購買量減去商品平均被點擊、收藏、加購物車、購買量

5、用戶對商品點擊、收藏、加購物車、購買量除以用戶點擊、收藏、加購物車、購買量

6、用戶對商品點擊、收藏、加購物車、購買量除以用戶對該類其他商品點擊、收藏、加購物車、購買量

7、用戶對商品點擊、收藏、加購物車、購買量除以該商品被點擊、收藏、加購物車、購買量

8、商品被點擊、收藏、加購物車、購買量除以該類商品被點擊、收藏、加購物車、購買量

七、雙十二處理

在計算商品特征和用戶特征時刪除雙十二數據,在計算時間周期等時,雙12后面的時間前移一天填補雙十二的空缺。

但在計算交叉特征時。假設須要計算上述特征仍然保留雙十二數據。

八、滑動窗體(效果微小)

曾經28天為歷史數據計算特征,后一天的購買情況打標簽,如用11月18號至12月15號數據計算特征,以12月16號購買情況打標簽。

然后窗體依次滑動一天,如此一共得到4個數據集,用前三個數據集作為訓練集。最后一個數據集作為測試集。

九、前期樣本過濾及抽樣

僅僅保留前兩天有操作的的樣本、然后正樣本過採樣到4倍。負樣本隨機抽樣,抽樣后正負樣本比約為1:8

特征版本號2:

Field | Type | Label | Comment |
+------------------------------------------------------------------------------------+
| uif_whichday | string | | |
| uif_user_id | string | | |
| uif_item_id | string | | |
| uif_category_id | string | | |
| label | bigint | | |
| uif_gapday | bigint | | |
| uif_sim | double | | |
| uif_incircle | bigint | | |
| uif_click_1 | bigint | | |
| uif_collect_1 | bigint | | |
| uif_cart_1 | bigint | | |
| uif_buy_1 | bigint | | |
| uif_visit_times_1 | bigint | | |
| uif_click_2 | bigint | | |
| uif_collect_2 | bigint | | |
| uif_cart_2 | bigint | | |
| uif_buy_2 | bigint | | |
| uif_lastdaymaxclickhour | bigint | | |
| uif_lastdaymaxcollecthour | bigint | | |
| uif_lastdaymaxcarthour | bigint | | |
| uif_lastdaymaxbuyhour | bigint | | |
| uif_lastdaystartbehavhour | bigint | | |
| uif_lastdayendbehavhour | bigint | | |
| uif_lastdaybehavhours | bigint | | |
| uif_lastdayclicks_division_bhours | double | | |
| uif_click_7 | bigint | | |
| uif_collect_7 | bigint | | |
| uif_cart_7 | bigint | | |
| uif_buy_7 | bigint | | |
| uif_active_days_7 | bigint | | |
| uif_buy_days_7 | bigint | | |
| uif_visit_times_7 | bigint | | |
| uif_buydays_division_activedays_7 | double | | |
| uif_click_5 | bigint | | |
| uif_collect_5 | bigint | | |
| uif_cart_5 | bigint | | |
| uif_buy_5 | bigint | | |
| uif_active_days_5 | bigint | | |
| uif_buy_days_5 | bigint | | |
| uif_visit_times_5 | bigint | | |
| uif_buydays_division_activedays_5 | double | | |
| uif_click_10 | bigint | | |
| uif_collect_10 | bigint | | |
| uif_cart_10 | bigint | | |
| uif_buy_10 | bigint | | |
| uif_active_days_10 | bigint | | |
| uif_buy_days_10 | bigint | | |
| uif_visit_times_10 | bigint | | |
| uif_buydays_division_activedays_10 | double | | |
| uif_click_3 | bigint | | |
| uif_collect_3 | bigint | | |
| uif_cart_3 | bigint | | |
| uif_buy_3 | bigint | | |
| uif_active_days_3 | bigint | | |
| uif_buy_days_3 | bigint | | |
| uif_visit_times_3 | bigint | | |
| uif_buydays_division_activedays_3 | double | | |
| uif_click_31 | bigint | | |
| uif_collect_31 | bigint | | |
| uif_cart_31 | bigint | | |
| uif_buy_31 | bigint | | |
| uif_active_days_31 | bigint | | |
| uif_buy_days_31 | bigint | | |
| uif_visit_times_31 | bigint | | |
| uif_buydays_division_activedays_31 | double | | |
| uf_whichday | string | | |
| uf_user_id | string | | |
| uf_click_1 | bigint | | |
| uf_collect_1 | bigint | | |
| uf_cart_1 | bigint | | |
| uf_buy_1 | bigint | | |
| uf_buyitems_1 | bigint | | |
| uf_buycates_1 | bigint | | |
| uf_clickitems_1 | bigint | | |
| uf_clickcates_1 | bigint | | |
| uf_cartitems_1 | bigint | | |
| uf_cartcates_1 | bigint | | |
| uf_collectitems_1 | bigint | | |
| uf_collectcates_1 | bigint | | |
| uf_buycates_division_clickcates_1 | double | | |
| uf_buyitems_division_clickitems_1 | double | | |
| uf_lastdayvisit_buy | bigint | | |
| uf_lastdayvisit_buy_rate_buys | double | | |
| uf_lastdayvisit_buy_rate_items | double | | |
| uf_lastdaycart_buy | bigint | | |
| uf_lastdaycart_buy_rate_buys | double | | |
| uf_lastdaycart_buy_rate_carts | double | | |
| uf_lastdaycart_buy_rate_items | double | | |
| uf_buy_lastday_avg_clicks | double | | |
| uf_buy_lastday_avg_collects | double | | |
| uf_buy_lastday_avg_carts | double | | |
| uf_buy_lastday_avg_buys | double | | |
| uf_buy_lastday_avg_clickitems | double | | |
| uf_buy_lastday_avg_collectitems | double | | |
| uf_buy_lastday_avg_cartitems | double | | |
| uf_buy_lastday_avg_buyitems | double | | |
| uf_buy_lastday_avg_clickcates | double | | |
| uf_buy_lastday_avg_collectcates | double | | |
| uf_buy_lastday_avg_cartcates | double | | |
| uf_buy_lastday_avg_buycates | double | | |
| uf_lastdaymaxclickhour | bigint | | |
| uf_lastdaymaxcollecthour | bigint | | |
| uf_lastdaymaxcarthour | bigint | | |
| uf_lastdaymaxbuyhour | bigint | | |
| uf_gapday | bigint | | |
| uf_avg_buygap | double | | |
| uf_lastdaystartbehavhour | bigint | | |
| uf_lastdayendbehavhour | bigint | | |
| uf_lastdaybehavhours | bigint | | |
| uf_click_7 | bigint | | |
| uf_collect_7 | bigint | | |
| uf_cart_7 | bigint | | |
| uf_buy_7 | bigint | | |
| uf_buyitems_7 | bigint | | |
| uf_buycates_7 | bigint | | |
| uf_clickitems_7 | bigint | | |
| uf_clickcates_7 | bigint | | |
| uf_cartitems_7 | bigint | | |
| uf_cartcates_7 | bigint | | |
| uf_collectitems_7 | bigint | | |
| uf_collectcates_7 | bigint | | |
| uf_active_days_7 | bigint | | |
| uf_buy_days_7 | bigint | | |
| uf_buycates_division_clickcates_7 | double | | |
| uf_buyitems_division_clickitems_7 | double | | |
| uf_buy_division_click_7 | double | | |
| uf_buy_division_cart_7 | double | | |
| uf_buy_division_collect_7 | double | | |
| uf_buydays_division_activedays_7 | double | | |
| uf_buys_division_buydays_7 | double | | |
| uf_buys_division_buyitems_7 | double | | |
| uf_buys_division_buycates_7 | double | | |
| uf_buyitems_division_buydays_7 | double | | |
| uf_buycates_division_buydays_7 | double | | |
| uf_click_5 | bigint | | |
| uf_collect_5 | bigint | | |
| uf_cart_5 | bigint | | |
| uf_buy_5 | bigint | | |
| uf_buyitems_5 | bigint | | |
| uf_buycates_5 | bigint | | |
| uf_clickitems_5 | bigint | | |
| uf_clickcates_5 | bigint | | |
| uf_cartitems_5 | bigint | | |
| uf_cartcates_5 | bigint | | |
| uf_collectitems_5 | bigint | | |
| uf_collectcates_5 | bigint | | |
| uf_active_days_5 | bigint | | |
| uf_buy_days_5 | bigint | | |
| uf_buycates_division_clickcates_5 | double | | |
| uf_buyitems_division_clickitems_5 | double | | |
| uf_buy_division_click_5 | double | | |
| uf_buy_division_cart_5 | double | | |
| uf_buy_division_collect_5 | double | | |
| uf_buydays_division_activedays_5 | double | | |
| uf_buys_division_buydays_5 | double | | |
| uf_buys_division_buyitems_5 | double | | |
| uf_buys_division_buycates_5 | double | | |
| uf_buyitems_division_buydays_5 | double | | |
| uf_buycates_division_buydays_5 | double | | |
| uf_click_10 | bigint | | |
| uf_collect_10 | bigint | | |
| uf_cart_10 | bigint | | |
| uf_buy_10 | bigint | | |
| uf_buyitems_10 | bigint | | |
| uf_buycates_10 | bigint | | |
| uf_clickitems_10 | bigint | | |
| uf_clickcates_10 | bigint | | |
| uf_cartitems_10 | bigint | | |
| uf_cartcates_10 | bigint | | |
| uf_collectitems_10 | bigint | | |
| uf_collectcates_10 | bigint | | |
| uf_active_days_10 | bigint | | |
| uf_buy_days_10 | bigint | | |
| uf_buycates_division_clickcates_10 | double | | |
| uf_buyitems_division_clickitems_10 | double | | |
| uf_buy_division_click_10 | double | | |
| uf_buy_division_cart_10 | double | | |
| uf_buy_division_collect_10 | double | | |
| uf_buydays_division_activedays_10 | double | | |
| uf_buys_division_buydays_10 | double | | |
| uf_buys_division_buyitems_10 | double | | |
| uf_buys_division_buycates_10 | double | | |
| uf_buyitems_division_buydays_10 | double | | |
| uf_buycates_division_buydays_10 | double | | |
| uf_click_3 | bigint | | |
| uf_collect_3 | bigint | | |
| uf_cart_3 | bigint | | |
| uf_buy_3 | bigint | | |
| uf_buyitems_3 | bigint | | |
| uf_buycates_3 | bigint | | |
| uf_active_days_3 | bigint | | |
| uf_buy_days_3 | bigint | | |
| uf_clickitems_3 | bigint | | |
| uf_clickcates_3 | bigint | | |
| uf_cartitems_3 | bigint | | |
| uf_cartcates_3 | bigint | | |
| uf_collectitems_3 | bigint | | |
| uf_collectcates_3 | bigint | | |
| uf_buycates_division_clickcates_3 | double | | |
| uf_buyitems_division_clickitems_3 | double | | |
| uf_buy_division_click_3 | double | | |
| uf_buy_division_cart_3 | double | | |
| uf_buy_division_collect_3 | double | | |
| uf_buydays_division_activedays_3 | double | | |
| uf_buys_division_buydays_3 | double | | |
| uf_buys_division_buyitems_3 | double | | |
| uf_buys_division_buycates_3 | double | | |
| uf_buyitems_division_buydays_3 | double | | |
| uf_buycates_division_buydays_3 | double | | |
| uf_click_31 | bigint | | |
| uf_collect_31 | bigint | | |
| uf_cart_31 | bigint | | |
| uf_buy_31 | bigint | | |
| uf_buyitems_31 | bigint | | |
| uf_buycates_31 | bigint | | |
| uf_active_days_31 | bigint | | |
| uf_buy_days_31 | bigint | | |
| uf_clickitems_31 | bigint | | |
| uf_clickcates_31 | bigint | | |
| uf_cartitems_31 | bigint | | |
| uf_cartcates_31 | bigint | | |
| uf_collectitems_31 | bigint | | |
| uf_collectcates_31 | bigint | | |
| uf_buycates_division_clickcates_31 | double | | |
| uf_buyitems_division_clickitems_31 | double | | |
| uf_buy_division_click_31 | double | | |
| uf_buy_division_cart_31 | double | | |
| uf_buy_division_collect_31 | double | | |
| uf_buydays_division_activedays_31 | double | | |
| uf_buys_division_buydays_31 | double | | |
| uf_buys_division_buyitems_31 | double | | |
| uf_buys_division_buycates_31 | double | | |
| uf_buyitems_division_buydays_31 | double | | |
| uf_buycates_division_buydays_31 | double | | |
| if_whichday | string | | |
| if_item_id | string | | |
| if_buytwice | bigint | | |
| if_buythird | bigint | | |
| if_click_1 | bigint | | |
| if_collect_1 | bigint | | |
| if_cart_1 | bigint | | |
| if_buy_1 | bigint | | |
| if_buyusers_1 | bigint | | |
| if_clickusers_1 | bigint | | |
| if_cartusers_1 | bigint | | |
| if_collectusers_1 | bigint | | |
| if_cartusers_division_buyusers_1 | double | | |
| if_collectusers_division_buyusers_1 | double | | |
| if_buyusers_division_clickusers_1 | double | | |
| if_avg_click_per_user_1 | double | | |
| if_hot_1 | double | | |
| if_lastdaymaxclickhour | bigint | | |
| if_lastdaymaxcollecthour | bigint | | |
| if_lastdaymaxcarthour | bigint | | |
| if_lastdaymaxbuyhour | bigint | | |
| if_click_7 | bigint | | |
| if_collect_7 | bigint | | |
| if_cart_7 | bigint | | |
| if_buy_7 | bigint | | |
| if_buyusers_7 | bigint | | |
| if_clickusers_7 | bigint | | |
| if_buyusers_division_clickusers_7 | double | | |
| if_hot_7 | double | | |
| if_active_days_7 | bigint | | |
| if_buy_days_7 | bigint | | |
| if_cartusers_7 | bigint | | |
| if_collectusers_7 | bigint | | |
| if_cartusers_division_buyusers_7 | double | | |
| if_collectusers_division_buyusers_7 | double | | |
| if_avg_click_per_user_7 | double | | |
| if_buy_division_click_7 | double | | |
| if_buy_division_cart_7 | double | | |
| if_buy_division_collect_7 | double | | |
| if_buydays_division_activedays_7 | double | | |
| if_buys_division_buydays_7 | double | | |
| if_buys_division_buyusers_7 | double | | |
| if_buyusers_division_buydays_7 | double | | |
| if_click_5 | bigint | | |
| if_collect_5 | bigint | | |
| if_cart_5 | bigint | | |
| if_buy_5 | bigint | | |
| if_buyusers_5 | bigint | | |
| if_clickusers_5 | bigint | | |
| if_buyusers_division_clickusers_5 | double | | |
| if_hot_5 | double | | |
| if_active_days_5 | bigint | | |
| if_buy_days_5 | bigint | | |
| if_cartusers_5 | bigint | | |
| if_collectusers_5 | bigint | | |
| if_cartusers_division_buyusers_5 | double | | |
| if_collectusers_division_buyusers_5 | double | | |
| if_avg_click_per_user_5 | double | | |
| if_buy_division_click_5 | double | | |
| if_buy_division_cart_5 | double | | |
| if_buy_division_collect_5 | double | | |
| if_buydays_division_activedays_5 | double | | |
| if_buys_division_buydays_5 | double | | |
| if_buys_division_buyusers_5 | double | | |
| if_buyusers_division_buydays_5 | double | | |
| if_click_10 | bigint | | |
| if_collect_10 | bigint | | |
| if_cart_10 | bigint | | |
| if_buy_10 | bigint | | |
| if_buyusers_10 | bigint | | |
| if_clickusers_10 | bigint | | |
| if_buyusers_division_clickusers_10 | double | | |
| if_hot_10 | double | | |
| if_active_days_10 | bigint | | |
| if_buy_days_10 | bigint | | |
| if_cartusers_10 | bigint | | |
| if_collectusers_10 | bigint | | |
| if_cartusers_division_buyusers_10 | double | | |
| if_collectusers_division_buyusers_10 | double | | |
| if_avg_click_per_user_10 | double | | |
| if_buy_division_click_10 | double | | |
| if_buy_division_cart_10 | double | | |
| if_buy_division_collect_10 | double | | |
| if_buydays_division_activedays_10 | double | | |
| if_buys_division_buydays_10 | double | | |
| if_buys_division_buyusers_10 | double | | |
| if_buyusers_division_buydays_10 | double | | |
| if_click_3 | bigint | | |
| if_collect_3 | bigint | | |
| if_cart_3 | bigint | | |
| if_buy_3 | bigint | | |
| if_buyusers_3 | bigint | | |
| if_clickusers_3 | bigint | | |
| if_buyusers_division_clickusers_3 | double | | |
| if_active_days_3 | bigint | | |
| if_buy_days_3 | bigint | | |
| if_hot_3 | double | | |
| if_cartusers_3 | bigint | | |
| if_collectusers_3 | bigint | | |
| if_cartusers_division_buyusers_3 | double | | |
| if_collectusers_division_buyusers_3 | double | | |
| if_buy_division_click_3 | double | | |
| if_buy_division_cart_3 | double | | |
| if_buy_division_collect_3 | double | | |
| if_buydays_division_activedays_3 | double | | |
| if_buys_division_buydays_3 | double | | |
| if_buys_division_buyusers_3 | double | | |
| if_buyusers_division_buydays_3 | double | | |
| if_avg_click_per_user_3 | double | | |
| if_click_31 | bigint | | |
| if_collect_31 | bigint | | |
| if_cart_31 | bigint | | |
| if_buy_31 | bigint | | |
| if_buyusers_31 | bigint | | |
| if_clickusers_31 | bigint | | |
| if_buyusers_division_clickusers_31 | double | | |
| if_active_days_31 | bigint | | |
| if_buy_days_31 | bigint | | |
| if_hot_31 | double | | |
| if_cartusers_31 | bigint | | |
| if_collectusers_31 | bigint | | |
| if_cartusers_division_buyusers_31 | double | | |
| if_collectusers_division_buyusers_31 | double | | |
| if_avg_click_per_user_31 | double | | |
| if_buy_division_click_31 | double | | |
| if_buy_division_cart_31 | double | | |
| if_buy_division_collect_31 | double | | |
| if_buydays_division_activedays_31 | double | | |
| if_buys_division_buydays_31 | double | | |
| if_buys_division_buyusers_31 | double | | |
| if_buyusers_division_buydays_31 | double | | |
| cf_whichday | string | | |
| cf_category_id | string | | |
| cf_click_1 | bigint | | |
| cf_collect_1 | bigint | | |
| cf_cart_1 | bigint | | |
| cf_buy_1 | bigint | | |
| cf_hot_1 | double | | |
| cf_buyusers_1 | bigint | | |
| cf_clickusers_1 | bigint | | |
| cf_cartusers_1 | bigint | | |
| cf_collectusers_1 | bigint | | |
| cf_cartusers_division_buyusers_1 | double | | |
| cf_collectusers_division_buyusers_1 | double | | |
| cf_buyusers_division_clickusers_1 | double | | |
| cf_click_7 | bigint | | |
| cf_collect_7 | bigint | | |
| cf_cart_7 | bigint | | |
| cf_buy_7 | bigint | | |
| cf_hot_7 | double | | |
| cf_buyusers_7 | bigint | | |
| cf_clickusers_7 | bigint | | |
| cf_cartusers_7 | bigint | | |
| cf_collectusers_7 | bigint | | |
| cf_cartusers_division_buyusers_7 | double | | |
| cf_collectusers_division_buyusers_7 | double | | |
| cf_buyusers_division_clickusers_7 | double | | |
| cf_buys_division_buyusers_7 | double | | |
| cf_buyusers_division_buydays_7 | double | | |
| cf_active_days_7 | bigint | | |
| cf_buy_days_7 | bigint | | |
| cf_buy_division_click_7 | double | | |
| cf_buy_division_cart_7 | double | | |
| cf_buy_division_collect_7 | double | | |
| cf_buydays_division_activedays_7 | double | | |
| cf_buys_division_buydays_7 | double | | |
| cf_click_5 | bigint | | |
| cf_collect_5 | bigint | | |
| cf_cart_5 | bigint | | |
| cf_buy_5 | bigint | | |
| cf_hot_5 | double | | |
| cf_buyusers_5 | bigint | | |
| cf_clickusers_5 | bigint | | |
| cf_cartusers_5 | bigint | | |
| cf_collectusers_5 | bigint | | |
| cf_cartusers_division_buyusers_5 | double | | |
| cf_collectusers_division_buyusers_5 | double | | |
| cf_buyusers_division_clickusers_5 | double | | |
| cf_buys_division_buyusers_5 | double | | |
| cf_buyusers_division_buydays_5 | double | | |
| cf_active_days_5 | bigint | | |
| cf_buy_days_5 | bigint | | |
| cf_buy_division_click_5 | double | | |
| cf_buy_division_cart_5 | double | | |
| cf_buy_division_collect_5 | double | | |
| cf_buydays_division_activedays_5 | double | | |
| cf_buys_division_buydays_5 | double | | |
| cf_click_10 | bigint | | |
| cf_collect_10 | bigint | | |
| cf_cart_10 | bigint | | |
| cf_buy_10 | bigint | | |
| cf_hot_10 | double | | |
| cf_buyusers_10 | bigint | | |
| cf_clickusers_10 | bigint | | |
| cf_cartusers_10 | bigint | | |
| cf_collectusers_10 | bigint | | |
| cf_cartusers_division_buyusers_10 | double | | |
| cf_collectusers_division_buyusers_10 | double | | |
| cf_buyusers_division_clickusers_10 | double | | |
| cf_buys_division_buyusers_10 | double | | |
| cf_buyusers_division_buydays_10 | double | | |
| cf_active_days_10 | bigint | | |
| cf_buy_days_10 | bigint | | |
| cf_buy_division_click_10 | double | | |
| cf_buy_division_cart_10 | double | | |
| cf_buy_division_collect_10 | double | | |
| cf_buydays_division_activedays_10 | double | | |
| cf_buys_division_buydays_10 | double | | |
| cf_click_3 | bigint | | |
| cf_collect_3 | bigint | | |
| cf_cart_3 | bigint | | |
| cf_buy_3 | bigint | | |
| cf_active_days_3 | bigint | | |
| cf_buy_days_3 | bigint | | |
| cf_hot_3 | double | | |
| cf_buyusers_3 | bigint | | |
| cf_clickusers_3 | bigint | | |
| cf_cartusers_3 | bigint | | |
| cf_collectusers_3 | bigint | | |
| cf_cartusers_division_buyusers_3 | double | | |
| cf_collectusers_division_buyusers_3 | double | | |
| cf_buyusers_division_clickusers_3 | double | | |
| cf_buys_division_buyusers_3 | double | | |
| cf_buyusers_division_buydays_3 | double | | |
| cf_buy_division_click_3 | double | | |
| cf_buy_division_cart_3 | double | | |
| cf_buy_division_collect_3 | double | | |
| cf_buydays_division_activedays_3 | double | | |
| cf_buys_division_buydays_3 | double | | |
| cf_click_31 | bigint | | |
| cf_collect_31 | bigint | | |
| cf_cart_31 | bigint | | |
| cf_buy_31 | bigint | | |
| cf_active_days_31 | bigint | | |
| cf_buy_days_31 | bigint | | |
| cf_hot_31 | double | | |
| cf_buyusers_31 | bigint | | |
| cf_clickusers_31 | bigint | | |
| cf_cartusers_31 | bigint | | |
| cf_collectusers_31 | bigint | | |
| cf_cartusers_division_buyusers_31 | double | | |
| cf_collectusers_division_buyusers_31 | double | | |
| cf_buyusers_division_clickusers_31 | double | | |
| cf_buys_division_buyusers_31 | double | | |
| cf_buyusers_division_buydays_31 | double | | |
| cf_buy_division_click_31 | double | | |
| cf_buy_division_cart_31 | double | | |
| cf_buy_division_collect_31 | double | | |
| cf_buydays_division_activedays_31 | double | | |
| cf_buys_division_buydays_31 | double | | |
| ucf_whichday | string | | |
| ucf_user_id | string | | |
| ucf_category_id | string | | |
| ucf_click_1 | bigint | | |
| ucf_collect_1 | bigint | | |
| ucf_cart_1 | bigint | | |
| ucf_buy_1 | bigint | | |
| ucf_clickitems_in_category_1 | bigint | | |
| ucf_cartitems_in_category_1 | bigint | | |
| ucf_collectitems_in_category_1 | bigint | | |
| ucf_buyitems_in_category_1 | bigint | | |
| ucf_lastdaymaxclickhour | bigint | | |
| ucf_lastdaymaxcollecthour | bigint | | |
| ucf_lastdaymaxcarthour | bigint | | |
| ucf_lastdaymaxbuyhour | bigint | | |
| ucf_lastdaystartbehavhour | bigint | | |
| ucf_lastdayendbehavhour | bigint | | |
| ucf_lastdaybehavhours | bigint | | |
| ucf_lastdayclicks_division_bhours | double | | |
| ucf_click_7 | bigint | | |
| ucf_collect_7 | bigint | | |
| ucf_cart_7 | bigint | | |
| ucf_buy_7 | bigint | | |
| ucf_active_days_7 | bigint | | |
| ucf_buy_days_7 | bigint | | |
| ucf_clickitems_in_category_7 | bigint | | |
| ucf_cartitems_in_category_7 | bigint | | |
| ucf_collectitems_in_category_7 | bigint | | |
| ucf_buyitems_in_category_7 | bigint | | |
| ucf_buydays_division_activedays_7 | double | | |
| ucf_click_5 | bigint | | |
| ucf_collect_5 | bigint | | |
| ucf_cart_5 | bigint | | |
| ucf_buy_5 | bigint | | |
| ucf_active_days_5 | bigint | | |
| ucf_buy_days_5 | bigint | | |
| ucf_clickitems_in_category_5 | bigint | | |
| ucf_cartitems_in_category_5 | bigint | | |
| ucf_collectitems_in_category_5 | bigint | | |
| ucf_buyitems_in_category_5 | bigint | | |
| ucf_buydays_division_activedays_5 | double | | |
| ucf_click_10 | bigint | | |
| ucf_collect_10 | bigint | | |
| ucf_cart_10 | bigint | | |
| ucf_buy_10 | bigint | | |
| ucf_active_days_10 | bigint | | |
| ucf_buy_days_10 | bigint | | |
| ucf_clickitems_in_category_10 | bigint | | |
| ucf_cartitems_in_category_10 | bigint | | |
| ucf_collectitems_in_category_10 | bigint | | |
| ucf_buyitems_in_category_10 | bigint | | |
| ucf_buydays_division_activedays_10 | double | | |
| ucf_click_3 | bigint | | |
| ucf_collect_3 | bigint | | |
| ucf_cart_3 | bigint | | |
| ucf_buy_3 | bigint | | |
| ucf_active_days_3 | bigint | | |
| ucf_buy_days_3 | bigint | | |
| ucf_clickitems_in_category_3 | bigint | | |
| ucf_cartitems_in_category_3 | bigint | | |
| ucf_collectitems_in_category_3 | bigint | | |
| ucf_buyitems_in_category_3 | bigint | | |
| ucf_buydays_division_activedays_3 | double | | |
| ucf_click_31 | bigint | | |
| ucf_collect_31 | bigint | | |
| ucf_cart_31 | bigint | | |
| ucf_buy_31 | bigint | | |
| ucf_active_days_31 | bigint | | |
| ucf_buy_days_31 | bigint | | |
| ucf_clickitems_in_category_31 | bigint | | |
| ucf_cartitems_in_category_31 | bigint | | |
| ucf_collectitems_in_category_31 | bigint | | |
| ucf_buydays_division_activedays_31 | double | | |
| ucf_buyitems_in_category_31 | bigint | | |
| cross_feature1 | double | | |
| cross_feature17 | double | | |
| cross_feature16 | double | | |
| cross_feature2 | double | | |
| cross_feature3 | double | | |
| cross_feature6 | double | | |
| cross_feature19 | double | | |
| cross_feature11 | double | | |
| cross_feature20 | double | | |
| cross_feature21 | double | | |
| cross_feature22 | double | | |
| cross_feature23 | double | | |
| cross_feature10 | double | | |
| cross_feature12 | double | | |
| cross_feature13 | double | | |
| cross_feature14 | double | | |
| cross_feature15 | double | | |
| cross_feature24 | double | | |
| cross_feature25 | double | | |
| cross_feature26 | double | | |
| cross_feature27 | double | | |
| cross_feature28 | double | | |
| cross_feature33 | double | | |
| cross_feature34 | double | | |
| cross_feature35 | double | | |
| cross_feature36 | double | | |
| cross_feature37 | double | | |
| cross_feature38 | double | | |
| cross_feature39 | double | | |
| cross_feature40 | double | | |
| cross_feature41 | double | | |
| cross_feature42 | double | | |
| cross_feature43 | double | | |
| cross_feature44 | double | | |
| cross_feature45 | double | | |
| cross_feature46 | double | | |
| cross_feature47 | bigint | | |
| cross_feature48 | double | | |
| cross_feature49 | double | | |
| cross_feature50 | double | | |
| cross_feature51 | double | | |
| cross_feature52 | double | | |
| cross_feature53 | double | | |
| cross_feature54 | double | | |
| cross_feature55 | double | | |
| cross_feature56 | double | | |
| cross_feature57 | double | | |
| cross_feature58 | double | | |
| cross_feature59 | double | | |
| cross_feature60 | double | | |
| cross_feature61 | double | | |
| cross_feature62 | double | | |
| cross_feature63 | double | | |
| cross_feature64 | double | | |
| cross_feature65 | double | | |
| cross_feature66 | double | | |
| cross_feature67 | double | | |
| cross_feature68 | double | | |
| cross_feature29 | double | | |
| cross_feature30 | double | | |
| cross_feature31 | double | | |
| cross_feature32 | double | | |
| cross_feature4 | bigint | | |
| cross_feature5 | bigint | | |
| cross_feature7 | bigint | | |
| cross_feature8 | bigint | | |
| cross_feature9 | bigint | | |
| cross_feature18 | bigint | | |
+------------------------------------------------------------------------------------+

特征版本號3:

DROP TABLE IF EXISTS t_dh_online_train_all_features;
CREATE TABLE t_dh_online_train_all_features as
SELECT *,

-- 這一層專門計算購買的可能性
ui_last1day_click_cnt*user_last3day_mean_prior_click_next_buy_cnt as ui_last3day_user_click_prob_buy_rate,
ui_last1day_bookmark_cnt*user_last3day_mean_prior_bookmark_next_buy_cnt as ui_last3day_user_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*user_last3day_mean_prior_addcart_next_buy_cnt as ui_last3day_user_addcart_prob_buy_rate,
ui_last1day_buy_cnt*user_last3day_mean_prior_buy_next_buy_cnt as ui_last3day_user_buy_prob_buy_rate,

ui_last1day_click_cnt*user_last7day_mean_prior_click_next_buy_cnt as ui_last7day_user_click_prob_buy_rate,
ui_last1day_bookmark_cnt*user_last7day_mean_prior_bookmark_next_buy_cnt as ui_last7day_user_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*user_last7day_mean_prior_addcart_next_buy_cnt as ui_last7day_user_addcart_prob_buy_rate,
ui_last1day_buy_cnt*user_last7day_mean_prior_buy_next_buy_cnt as ui_last7day_user_buy_prob_buy_rate,

ui_last1day_click_cnt*item_last3day_mean_prior_click_next_buy_cnt as ui_last3day_item_click_prob_buy_rate,
ui_last1day_bookmark_cnt*item_last3day_mean_prior_bookmark_next_buy_cnt as ui_last3day_item_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*item_last3day_mean_prior_addcart_next_buy_cnt as ui_last3day_item_addcart_prob_buy_rate,
ui_last1day_buy_cnt*item_last3day_mean_prior_buy_next_buy_cnt as ui_last3day_item_buy_prob_buy_rate,

ui_last1day_click_cnt*item_last7day_mean_prior_click_next_buy_cnt as ui_last7day_item_click_prob_buy_rate,
ui_last1day_bookmark_cnt*item_last7day_mean_prior_bookmark_next_buy_cnt as ui_last7day_item_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*item_last7day_mean_prior_addcart_next_buy_cnt as ui_last7day_item_addcart_prob_buy_rate,
ui_last1day_buy_cnt*item_last7day_mean_prior_buy_next_buy_cnt as ui_last7day_item_buy_prob_buy_rate,

ui_last1day_click_cnt*category_last3day_mean_prior_click_next_buy_cnt as ui_last3day_category_click_prob_buy_rate,
ui_last1day_bookmark_cnt*category_last3day_mean_prior_bookmark_next_buy_cnt as ui_last3day_category_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*category_last3day_mean_prior_addcart_next_buy_cnt as ui_last3day_category_addcart_prob_buy_rate,
ui_last1day_buy_cnt*category_last3day_mean_prior_buy_next_buy_cnt as ui_last3day_category_buy_prob_buy_rate,

ui_last1day_click_cnt*category_last7day_mean_prior_click_next_buy_cnt as ui_last7day_category_click_prob_buy_rate,
ui_last1day_bookmark_cnt*category_last7day_mean_prior_bookmark_next_buy_cnt as ui_last7day_category_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*category_last7day_mean_prior_addcart_next_buy_cnt as ui_last7day_category_addcart_prob_buy_rate,
ui_last1day_buy_cnt*category_last7day_mean_prior_buy_next_buy_cnt as ui_last7day_category_buy_prob_buy_rate,

ui_last1day_click_cnt*user_last3day_mean_prior_click_next_buy_cnt*item_last3day_mean_prior_click_next_buy_cnt as ui_last3day_complex_click_prob_buy_rate,
ui_last1day_bookmark_cnt*user_last3day_mean_prior_bookmark_next_buy_cnt*item_last3day_mean_prior_bookmark_next_buy_cnt as ui_last3day_complex_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*user_last3day_mean_prior_addcart_next_buy_cnt*item_last3day_mean_prior_addcart_next_buy_cnt as ui_last3day_complex_addcart_prob_buy_rate,
ui_last1day_buy_cnt*user_last3day_mean_prior_buy_next_buy_cnt*item_last3day_mean_prior_buy_next_buy_cnt as ui_last3day_complex_buy_prob_buy_rate,

ui_last1day_click_cnt*user_last7day_mean_prior_click_next_buy_cnt*item_last7day_mean_prior_click_next_buy_cnt as ui_last7day_complex_click_prob_buy_rate,
ui_last1day_bookmark_cnt*user_last7day_mean_prior_bookmark_next_buy_cnt*item_last7day_mean_prior_bookmark_next_buy_cnt as ui_last7day_complex_bookmark_prob_buy_rate,
ui_last1day_addcart_cnt*user_last7day_mean_prior_addcart_next_buy_cnt*item_last7day_mean_prior_addcart_next_buy_cnt as ui_last7day_complex_addcart_prob_buy_rate,
ui_last1day_buy_cnt*user_last7day_mean_prior_buy_next_buy_cnt*item_last7day_mean_prior_buy_next_buy_cnt as ui_last7day_complex_buy_prob_buy_rate,

-- 依據用戶前一天的交互來推導用戶購買的可能性
(ui_last1day_click_cnt*user_last3day_mean_prior_click_next_buy_cnt*item_last3day_mean_prior_click_next_buy_cnt
+ui_last1day_bookmark_cnt*user_last3day_mean_prior_bookmark_next_buy_cnt*item_last3day_mean_prior_bookmark_next_buy_cnt
+ui_last1day_addcart_cnt*user_last3day_mean_prior_addcart_next_buy_cnt*item_last3day_mean_prior_addcart_next_buy_cnt
+ui_last1day_buy_cnt*user_last3day_mean_prior_buy_next_buy_cnt*item_last3day_mean_prior_buy_next_buy_cnt)*pow(13,-1*ui_last1day_buy_cnt) as ui_last3day_prob_next_day_buy_rate,

(ui_last1day_click_cnt*user_last7day_mean_prior_click_next_buy_cnt*item_last7day_mean_prior_click_next_buy_cnt
+ui_last1day_bookmark_cnt*user_last7day_mean_prior_bookmark_next_buy_cnt*item_last7day_mean_prior_bookmark_next_buy_cnt
+ui_last1day_addcart_cnt*user_last7day_mean_prior_addcart_next_buy_cnt*item_last7day_mean_prior_addcart_next_buy_cnt
+ui_last1day_buy_cnt*user_last7day_mean_prior_buy_next_buy_cnt*item_last7day_mean_prior_buy_next_buy_cnt)*pow(13,-1*ui_last1day_buy_cnt) as ui_last7day_prob_next_day_buy_rate

FROM
(
SELECT *,

-------------------------------------------------------------- 轉化率 -------------------------------------------------------------------------------------
-- 商品購買的用戶數轉換率
case when item_last3day_behavior_user_cnt = 0 then 0 else item_last3day_buy_user_cnt/item_last3day_behavior_user_cnt end as item_last3day_user_click2buy_rate,
case when item_last7day_behavior_user_cnt = 0 then 0 else item_last7day_buy_user_cnt/item_last7day_behavior_user_cnt end as item_last7day_user_click2buy_rate,
case when item_last28day_behavior_user_cnt = 0 then 0 else item_last28day_buy_user_cnt/item_last28day_behavior_user_cnt end as item_last28day_user_click2buy_rate,

-- 品類交互的用戶數轉化率
case when category_last3day_behavior_user_cnt = 0 then 0 else category_last3day_buy_user_cnt/category_last3day_behavior_user_cnt end as category_last3day_user_click2buy_rate,
case when category_last7day_behavior_user_cnt = 0 then 0 else category_last7day_buy_user_cnt/category_last7day_behavior_user_cnt end as category_last7day_user_click2buy_rate,
case when category_last28day_behavior_user_cnt = 0 then 0 else category_last28day_buy_user_cnt/category_last28day_behavior_user_cnt end as category_last28day_user_click2buy_rate,

-- U:用戶交互轉化率
case when user_last28day_click_cnt = 0 then 0 else user_last28day_buy_cnt/user_last28day_click_cnt end as user_last28day_click2buy_rate,
case when user_last28day_bookmark_cnt = 0 then 0 else user_last28day_buy_cnt/user_last28day_bookmark_cnt end as user_last28day_bookmark2buy_rate,
case when user_last28day_addcart_cnt = 0 then 0 else user_last28day_buy_cnt/user_last28day_addcart_cnt end as user_last28day_addcart2buy_rate,

-- I:商品交互的轉化率
case when item_last28day_click_cnt = 0 then 0 else item_last28day_buy_cnt/item_last28day_click_cnt end as item_last28day_click2buy_rate,
case when item_last28day_bookmark_cnt = 0 then 0 else item_last28day_buy_cnt/item_last28day_bookmark_cnt end as item_last28day_bookmark2buy_rate,
case when item_last28day_addcart_cnt = 0 then 0 else item_last28day_buy_cnt/item_last28day_addcart_cnt end as item_last28day_addcart2buy_rate,

-- C:品類交互的轉化率
case when category_last28day_click_cnt = 0 then 0 else category_last28day_buy_cnt/category_last28day_click_cnt end as category_last28day_click2buy_rate,
case when category_last28day_bookmark_cnt = 0 then 0 else category_last28day_buy_cnt/category_last28day_bookmark_cnt end as category_last28day_bookmark2buy_rate,
case when category_last28day_addcart_cnt = 0 then 0 else category_last28day_buy_cnt/category_last28day_addcart_cnt end as category_last28day_addcart2buy_rate,

-- UC:用戶交互品類的轉化率
case when user_last28day_click_category_cnt = 0 then 0 else user_last28day_buy_category_cnt/user_last28day_click_category_cnt end as user_last28day_category_click2buy_rate,
case when user_last28day_bookmark_category_cnt = 0 then 0 else user_last28day_buy_category_cnt/user_last28day_bookmark_category_cnt end as user_last28day_category_bookmark2buy_rate,
case when user_last28day_addcart_category_cnt = 0 then 0 else user_last28day_buy_category_cnt/user_last28day_addcart_category_cnt end as user_last28day_category_addcart2buy_rate,

-- UI:用戶交互商品的轉化率
case when ui_last28day_click_cnt = 0 then 0 else ui_last28day_buy_cnt/ui_last28day_click_cnt end as ui_last28day_click2buy_rate,
case when ui_last28day_bookmark_cnt = 0 then 0 else ui_last28day_buy_cnt/ui_last28day_bookmark_cnt end as ui_last28day_bookmark2buy_rate,
case when ui_last28day_addcart_cnt = 0 then 0 else ui_last28day_buy_cnt/ui_last28day_addcart_cnt end as ui_last28day_addcart2buy_rate,

--------------------------------------------------------------------- 占比 ----------------------------------------------------------------
-- 商品平均交互占比
case when category_last28day_behavior_user_cnt = 0 then 0 else item_last28day_behavior_user_cnt/category_last28day_behavior_user_cnt end as item_of_category_last28day_user_behavior_rate,
case when category_last28day_buy_user_cnt = 0 then 0 else item_last28day_buy_user_cnt/category_last28day_buy_user_cnt end as item_of_category_last28day_user_buy_rate,

-- 用戶對商品的平均交互數
case when user_last28day_click_cnt = 0 then 0 else user_last28day_click_item_cnt/user_last28day_click_cnt end as user_last28day_item_avg_click_rate,
case when user_last28day_bookmark_cnt = 0 then 0 else user_last28day_bookmark_item_cnt/user_last28day_bookmark_cnt end as user_last28day_item_avg_bookmark_rate,
case when user_last28day_addcart_cnt = 0 then 0 else user_last28day_addcart_item_cnt/user_last28day_addcart_cnt end as user_last28day_item_avg_addcart_rate,
case when user_last28day_buy_cnt = 0 then 0 else user_last28day_buy_item_cnt/user_last28day_buy_cnt end as user_last28day_item_avg_buy_rate,

-- 用戶的品類平均交互數
case when user_last28day_click_cnt = 0 then 0 else user_last28day_click_category_cnt/user_last28day_click_cnt end as user_last28day_category_avg_click_rate,
case when user_last28day_bookmark_cnt = 0 then 0 else user_last28day_bookmark_category_cnt/user_last28day_bookmark_cnt end as user_last28day_category_avg_bookmark_rate,
case when user_last28day_addcart_cnt = 0 then 0 else user_last28day_addcart_category_cnt/user_last28day_addcart_cnt end as user_last28day_category_avg_addcart_rate,
case when user_last28day_buy_cnt = 0 then 0 else user_last28day_buy_category_cnt/user_last28day_buy_cnt end as user_last28day_category_avg_buy_rate,

-- 用戶交互商品的轉化率
case when user_last28day_click_item_cnt = 0 then 0 else user_last28day_buy_item_cnt/user_last28day_click_item_cnt end as user_last28day_item_click2buy_rate,
case when user_last28day_bookmark_item_cnt = 0 then 0 else user_last28day_buy_item_cnt/user_last28day_bookmark_item_cnt end as user_last28day_item_bookmark2buy_rate,
case when user_last28day_addcart_item_cnt = 0 then 0 else user_last28day_buy_item_cnt/user_last28day_addcart_item_cnt end as user_last28day_item_addcart2buy_rate,

case when category_last28day_buy_cnt = 0 then 0 else item_last28day_buy_cnt/category_last28day_buy_cnt end as item_of_category_last28day_buy_rate,

-- 反復購買占比
case when item_last28day_buy_user_cnt = 0 then 0 else item_last28day_dumplicated_buy_user_cnt/item_last28day_buy_user_cnt end as item_last28day_dumplicated_buy_user_rate,
case when item_last28day_buy_cnt = 0 then 0 else item_last28day_dumplicated_buy_cnt/item_last28day_buy_cnt end as item_last28day_dumplicated_buy_rate,
case when category_last28day_buy_user_cnt = 0 then 0 else category_last28day_dumplicated_buy_user_cnt/category_last28day_buy_user_cnt end as category_last28day_dumplicated_buy_user_rate,
case when category_last28day_buy_cnt = 0 then 0 else category_last28day_dumplicated_buy_cnt/category_last28day_buy_cnt end as category_last28day_dumplicated_buy_rate,

-- 2021.06.08 新增特征:用商品點擊率等來區分增加購物欄的不同商品
case when ui_last28day_click_cnt = 0
then 0 else ui_last28day_category_click_cnt/ui_last28day_click_cnt end as ui_last28day_category_avg_click_rate,
case when user_last28day_click_cnt = 0
then 0 else ui_last28day_category_click_cnt/user_last28day_click_cnt
end as ui_category_last28day_click_rate,
case when user_last28day_click_cnt = 0
then 0 else ui_last28day_click_cnt/user_last28day_click_cnt
end as ui_item_last28day_click_rate,

case when ui_last28day_bookmark_cnt = 0
then 0 else ui_last28day_category_bookmark_cnt/ui_last28day_bookmark_cnt end as ui_item_of_category_last28day_bookmark_rate,
case when user_last28day_bookmark_category_cnt = 0then 0 else ui_last28day_category_bookmark_cnt/user_last28day_bookmark_category_cntend as ui_category_last28day_bookmark_rate,
case when user_last28day_bookmark_cnt = 0
then 0 else ui_last28day_bookmark_cnt/user_last28day_bookmark_cnt
end as ui_item_last28day_bookmark_rate,

case when ui_last28day_category_addcart_cnt = 0then 0 else ui_last28day_addcart_cnt/ui_last28day_category_addcart_cnt end as ui_item_of_category_last28day_addcart_rate,
case when user_last28day_addcart_cnt = 0
then 0 else ui_last28day_category_addcart_cnt/user_last28day_addcart_cnt
end as ui_category_last28day_addcart_rate,
case when user_last28day_addcart_cnt = 0
then 0 else ui_last28day_addcart_cnt/user_last28day_addcart_cnt
end as ui_item_last28day_addcart_rate,

case when ui_last28day_category_buy_cnt = 0
then 0 else ui_last28day_buy_cnt/ui_last28day_category_buy_cnt end as ui_item_of_category_last28day_buy_rate,
case when user_last28day_buy_cnt = 0
then 0 else ui_last28day_category_buy_cnt/user_last28day_buy_cnt
end as ui_category_last28day_buy_rate,
case when user_last28day_buy_cnt = 0
then 0 else ui_last28day_buy_cnt/user_last28day_buy_cnt
end as ui_item_last28day_buy_rate,

-- 前一天的UI交互占比
case when user_last1day_click_cnt = 0 then 0 else ui_last1day_click_cnt/user_last1day_click_cnt end as ui_of_user_last1day_click_rate,
case when user_last1day_bookmark_cnt = 0 then 0 else ui_last1day_bookmark_cnt/user_last1day_bookmark_cnt end as ui_of_user_last1day_bookmark_rate,
case when user_last1day_addcart_cnt = 0 then 0 else ui_last1day_addcart_cnt/user_last1day_addcart_cnt end as ui_of_user_last1day_addcart_rate,
case when user_last1day_buy_cnt = 0 then 0 else ui_last1day_buy_cnt/user_last1day_buy_cnt end as ui_of_user_last1day_buy_rate,

case when item_last1day_click_cnt = 0 then 0 else ui_last1day_click_cnt/item_last1day_click_cnt end as ui_of_item_last1day_click_rate,
case when item_last1day_bookmark_cnt = 0 then 0 else ui_last1day_bookmark_cnt/item_last1day_bookmark_cnt end as ui_of_item_last1day_bookmark_rate,
case when item_last1day_addcart_cnt = 0 then 0 else ui_last1day_addcart_cnt/item_last1day_addcart_cnt end as ui_of_item_last1day_addcart_rate,
case when item_last1day_buy_cnt = 0 then 0 else ui_last1day_buy_cnt/item_last1day_buy_cnt end as ui_of_item_last1day_buy_rate,

case when category_last1day_click_cnt = 0 then 0 else ui_last1day_click_cnt/category_last1day_click_cnt end as ui_of_category_last1day_click_rate,
case when category_last1day_bookmark_cnt = 0 then 0 else ui_last1day_bookmark_cnt/category_last1day_bookmark_cnt end as ui_of_category_last1day_bookmark_rate,
case when category_last1day_addcart_cnt = 0 then 0 else ui_last1day_addcart_cnt/category_last1day_addcart_cnt end as ui_of_category_last1day_addcart_rate,
case when category_last1day_buy_cnt = 0 then 0 else ui_last1day_buy_cnt/category_last1day_buy_cnt end as ui_of_category_last1day_buy_rate,

case when (user_last1day_click_cnt+user_last1day_bookmark_cnt+user_last1day_addcart_cnt+user_last1day_buy_cnt)= 0 then 0 else
(ui_last1day_click_cnt*0.1 + ui_last1day_bookmark_cnt*1 + ui_last1day_addcart_cnt*2 + ui_last1day_buy_cnt *5 )/(user_last1day_click_cnt*0.1 + user_last1day_bookmark_cnt*1 + user_last1day_addcart_cnt*2 + user_last1day_buy_cnt
*5 ) end as ui_of_user_last1day_prevalent_rate,

case when (item_last1day_click_cnt+item_last1day_bookmark_cnt+item_last1day_addcart_cnt+item_last1day_buy_cnt)= 0 then 0 else
(ui_last1day_click_cnt*0.1 + ui_last1day_bookmark_cnt*1 + ui_last1day_addcart_cnt*2 + ui_last1day_buy_cnt *5 )/(item_last1day_click_cnt*0.1 + item_last1day_bookmark_cnt*1 + item_last1day_addcart_cnt*2 + item_last1day_buy_cnt
*5 ) end as ui_of_item_last1day_prevalent_rate,

case when (category_last1day_click_cnt+category_last1day_bookmark_cnt+category_last1day_addcart_cnt+category_last1day_buy_cnt)= 0 then 0 else
(ui_last1day_click_cnt*0.1 + ui_last1day_bookmark_cnt*1 + ui_last1day_addcart_cnt*2 + ui_last1day_buy_cnt *5 )/(category_last1day_click_cnt*0.1 + category_last1day_bookmark_cnt*1 + category_last1day_addcart_cnt*2 + category_last1day_buy_cnt
*5 ) end as ui_of_category_last1day_prevalent_rate,

----------------------------------------------------------------------- 2015.06.25 平均 ----------------------------------------------------------------------
ui_last3day_buy_cnt/3 as ui_last3day_avg_buy_cnt,
ui_last7day_buy_cnt/7 as ui_last7day_avg_buy_cnt,
ui_last14day_buy_cnt/14 as ui_last14day_avg_buy_cnt,
ui_last21day_buy_cnt/21 as ui_last21day_avg_buy_cnt,
ui_last28day_buy_cnt/28 as ui_last28day_avg_buy_cnt,

user_last3day_buy_cnt/3 as user_last3day_avg_buy_cnt,
user_last7day_buy_cnt/7 as user_last7day_avg_buy_cnt,
user_last14day_buy_cnt/14 as user_last14day_avg_buy_cnt,
user_last21day_buy_cnt/21 as user_last21day_avg_buy_cnt,
user_last28day_buy_cnt/28 as user_last28day_avg_buy_cnt,

user_last3day_buy_item_cnt/3 as user_last3day_buy_item_avg_cnt,
user_last7day_buy_item_cnt/7 as user_last7day_buy_item_avg_cnt,
user_last14day_buy_item_cnt/14 as user_last14day_buy_item_avg_cnt,
user_last21day_buy_item_cnt/21 as user_last21day_buy_item_avg_cnt,
user_last28day_buy_item_cnt/28 as user_last28day_buy_item_avg_cnt,

user_last3day_buy_category_cnt/3 as user_last3day_buy_category_avg_cnt,
user_last7day_buy_category_cnt/7 as user_last7day_buy_category_avg_cnt,
user_last14day_buy_category_cnt/14 as user_last14day_buy_category_avg_cnt,
user_last21day_buy_category_cnt/21 as user_last21day_buy_category_avg_cnt,
user_last28day_buy_category_cnt/28 as user_last28day_buy_category_avg_cnt,

user_last3day_behavior_item_cnt/3 as user_last3day_behavior_item_avg_cnt,
user_last7day_behavior_item_cnt/7 as user_last7day_behavior_item_avg_cnt,
user_last14day_behavior_item_cnt/14 as user_last14day_behavior_item_avg_cnt,
user_last21day_behavior_item_cnt/21 as user_last21day_behavior_item_avg_cnt,
user_last28day_behavior_item_cnt/28 as user_last28day_behavior_item_avg_cnt,

user_last3day_behavior_category_cnt/3 as user_last3day_behavior_category_avg_cnt,
user_last7day_behavior_category_cnt/7 as user_last7day_behavior_category_avg_cnt,
user_last14day_behavior_category_cnt/14 as user_last14day_behavior_category_avg_cnt,
user_last21day_behavior_category_cnt/21 as user_last21day_behavior_category_avg_cnt,
user_last28day_behavior_category_cnt/28 as user_last28day_behavior_category_avg_cnt,

item_last3day_buy_cnt/3 as item_last3day_buy_avg_cnt,
item_last7day_buy_cnt/7 as item_last7day_buy_avg_cnt,
item_last14day_buy_cnt/14 as item_last14day_buy_avg_cnt,
item_last21day_buy_cnt/21 as item_last21day_buy_avg_cnt,
item_last28day_buy_cnt/28 as item_last28day_buy_avg_cnt,

category_last3day_buy_cnt/3 as category_last3day_buy_avg_cnt,
category_last7day_buy_cnt/7 as category_last7day_buy_avg_cnt,
category_last14day_buy_cnt/14 as category_last14day_buy_avg_cnt,
category_last21day_buy_cnt/21 as category_last21day_buy_avg_cnt,
category_last28day_buy_cnt/28 as category_last28day_buy_avg_cnt,

item_last3day_buy_user_cnt/3 as item_last3day_buy_user_avg_cnt,
item_last7day_buy_user_cnt/7 as item_last7day_buy_user_avg_cnt,
item_last14day_buy_user_cnt/14 as item_last14day_buy_user_avg_cnt,
item_last21day_buy_user_cnt/21 as item_last21day_buy_user_avg_cnt,
item_last28day_buy_user_cnt/28 as item_last28day_buy_user_avg_cnt,

category_last3day_buy_user_cnt/3 as category_last3day_buy_user_avg_cnt,
category_last7day_buy_user_cnt/7 as category_last7day_buy_user_avg_cnt,
category_last14day_buy_user_cnt/14 as category_last14day_buy_user_avg_cnt,
category_last21day_buy_user_cnt/21 as category_last21day_buy_user_avg_cnt,
category_last28day_buy_user_cnt/28 as category_last28day_buy_user_avg_cnt,

item_last3day_behavior_user_cnt/3 as item_last3day_behavior_user_avg_cnt,
item_last7day_behavior_user_cnt/7 as item_last7day_behavior_user_avg_cnt,
item_last14day_behavior_user_cnt/14 as item_last14day_behavior_user_avg_cnt,
item_last21day_behavior_user_cnt/21 as item_last21day_behavior_user_avg_cnt,
item_last28day_behavior_user_cnt/28 as item_last28day_behavior_user_avg_cnt,

category_last3day_behavior_user_cnt/3 as category_last3day_behavior_user_avg_cnt,
category_last7day_behavior_user_cnt/7 as category_last7day_behavior_user_avg_cnt,
category_last14day_behavior_user_cnt/14 as category_last14day_behavior_user_avg_cnt,
category_last21day_behavior_user_cnt/21 as category_last21day_behavior_user_avg_cnt,
category_last28day_behavior_user_cnt/28 as category_last28day_behavior_user_avg_cnt,

----------------------------------------------------------------------- 減法特征 ----------------------------------------------------------------------
-- (用戶A對品牌B的PV數-用戶A對操作過的品牌的平均PV數)/用戶A對操作過的品牌的平均PV數
-- (用戶A對品牌B的購買數-用戶A對操作過的品牌的平均購買數)/用戶A對操作過的品牌的平均購買數
-- (用戶A對品牌B的收藏數-品牌B被平均收藏數)/品牌B被平均收藏數
case when user_last1day_click_cnt = 0 then 0 else (ui_last1day_click_cnt*user_last1day_click_item_cnt - user_last1day_click_cnt)/user_last1day_click_cnt end as ui_last1day_click_of_avg_item_click_rate,
case when user_last1day_buy_cnt = 0 then 0 else (ui_last1day_buy_cnt*user_last1day_buy_item_cnt - user_last1day_buy_cnt)/user_last1day_buy_cnt end as ui_last1day_buy_of_avg_item_buy_rate,
case when user_last3day_click_cnt = 0 then 0 else (ui_last3day_click_cnt*user_last3day_click_item_cnt - user_last3day_click_cnt)/user_last3day_click_cnt end as ui_last3day_click_of_avg_item_click_rate,
case when user_last3day_buy_cnt = 0 then 0 else (ui_last3day_buy_cnt*user_last3day_buy_item_cnt - user_last3day_buy_cnt)/user_last3day_buy_cnt end as ui_last3day_buy_of_avg_item_buy_rate,
case when user_last7day_click_cnt = 0 then 0 else (ui_last7day_click_cnt*user_last7day_click_item_cnt - user_last7day_click_cnt)/user_last7day_click_cnt end as ui_last7day_click_of_avg_item_click_rate,
case when user_last7day_buy_cnt = 0 then 0 else (ui_last7day_buy_cnt*user_last7day_buy_item_cnt - user_last7day_buy_cnt)/user_last7day_buy_cnt end as ui_last7day_buy_of_avg_item_buy_rate,
case when user_last14day_click_cnt = 0 then 0 else (ui_last14day_click_cnt*user_last14day_click_item_cnt - user_last14day_click_cnt)/user_last14day_click_cnt end as ui_last14day_click_of_avg_item_click_rate,
case when user_last14day_buy_cnt = 0 then 0 else (ui_last14day_buy_cnt*user_last14day_buy_item_cnt - user_last14day_buy_cnt)/user_last14day_buy_cnt end as ui_last14day_buy_of_avg_item_buy_rate,
case when user_last21day_click_cnt = 0 then 0 else (ui_last21day_click_cnt*user_last21day_click_item_cnt - user_last21day_click_cnt)/user_last21day_click_cnt end as ui_last21day_click_of_avg_item_click_rate,
case when user_last21day_buy_cnt = 0 then 0 else (ui_last21day_buy_cnt*user_last21day_buy_item_cnt - user_last21day_buy_cnt)/user_last21day_buy_cnt end as ui_last21day_buy_of_avg_item_buy_rate,
case when user_last28day_click_cnt = 0 then 0 else (ui_last28day_click_cnt*user_last28day_click_item_cnt - user_last28day_click_cnt)/user_last28day_click_cnt end as ui_last28day_click_of_avg_item_click_rate,
case when user_last28day_buy_cnt = 0 then 0 else (ui_last28day_buy_cnt*user_last28day_buy_item_cnt - user_last28day_buy_cnt)/user_last28day_buy_cnt end as ui_last28day_buy_of_avg_item_buy_rate,

case when category_last1day_click_cnt = 0 then 0 else (ui_last1day_category_click_cnt*category_last1day_click_user_cnt-category_last1day_click_cnt)/category_last1day_click_cnt end as uc_last1day_click_of_avg_category_click_rate,
case when category_last1day_bookmark_cnt = 0 then 0 else (ui_last1day_category_bookmark_cnt*category_last1day_bookmark_user_cnt-category_last1day_bookmark_cnt)/category_last1day_bookmark_cnt end as uc_last1day_bookmark_of_avg_category_bookmark_rate,
case when category_last1day_addcart_cnt = 0 then 0 else (ui_last1day_category_addcart_cnt*category_last1day_addcart_user_cnt-category_last1day_addcart_cnt)/category_last1day_addcart_cnt end as uc_last1day_addcart_of_avg_category_addcart_rate,
case when category_last1day_buy_cnt = 0 then 0 else (ui_last1day_category_buy_cnt*category_last1day_buy_user_cnt-category_last1day_buy_cnt)/category_last1day_buy_cnt end as uc_last1day_buy_of_avg_category_buy_rate,

case when category_last3day_click_cnt = 0 then 0 else (ui_last3day_category_click_cnt*category_last3day_click_user_cnt-category_last3day_click_cnt)/category_last3day_click_cnt end as uc_last3day_click_of_avg_category_click_rate,
case when category_last3day_bookmark_cnt = 0 then 0 else (ui_last3day_category_bookmark_cnt*category_last3day_bookmark_user_cnt-category_last3day_bookmark_cnt)/category_last3day_bookmark_cnt end as uc_last3day_bookmark_of_avg_category_bookmark_rate,
case when category_last3day_addcart_cnt = 0 then 0 else (ui_last3day_category_addcart_cnt*category_last3day_addcart_user_cnt-category_last3day_addcart_cnt)/category_last3day_addcart_cnt end as uc_last3day_addcart_of_avg_category_addcart_rate,
case when category_last3day_buy_cnt = 0 then 0 else (ui_last3day_category_buy_cnt*category_last3day_buy_user_cnt-category_last3day_buy_cnt)/category_last3day_buy_cnt end as uc_last3day_buy_of_avg_category_buy_rate,

case when category_last7day_click_cnt = 0 then 0 else (ui_last7day_category_click_cnt*category_last7day_click_user_cnt-category_last7day_click_cnt)/category_last7day_click_cnt end as uc_last7day_click_of_avg_category_click_rate,
case when category_last7day_bookmark_cnt = 0 then 0 else (ui_last7day_category_bookmark_cnt*category_last7day_bookmark_user_cnt-category_last7day_bookmark_cnt)/category_last7day_bookmark_cnt end as uc_last7day_bookmark_of_avg_category_bookmark_rate,
case when category_last7day_addcart_cnt = 0 then 0 else (ui_last7day_category_addcart_cnt*category_last7day_addcart_user_cnt-category_last7day_addcart_cnt)/category_last7day_addcart_cnt end as uc_last7day_addcart_of_avg_category_addcart_rate,
case when category_last7day_buy_cnt = 0 then 0 else (ui_last7day_category_buy_cnt*category_last7day_buy_user_cnt-category_last7day_buy_cnt)/category_last7day_buy_cnt end as uc_last7day_buy_of_avg_category_buy_rate,

case when category_last14day_click_cnt = 0 then 0 else (ui_last14day_category_click_cnt*category_last14day_click_user_cnt-category_last14day_click_cnt)/category_last14day_click_cnt end as uc_last14day_click_of_avg_category_click_rate,
case when category_last14day_bookmark_cnt = 0 then 0 else (ui_last14day_category_bookmark_cnt*category_last14day_bookmark_user_cnt-category_last14day_bookmark_cnt)/category_last14day_bookmark_cnt end as uc_last14day_bookmark_of_avg_category_bookmark_rate,
case when category_last14day_addcart_cnt = 0 then 0 else (ui_last14day_category_addcart_cnt*category_last14day_addcart_user_cnt-category_last14day_addcart_cnt)/category_last14day_addcart_cnt end as uc_last14day_addcart_of_avg_category_addcart_rate,
case when category_last14day_buy_cnt = 0 then 0 else (ui_last14day_category_buy_cnt*category_last14day_buy_user_cnt-category_last14day_buy_cnt)/category_last14day_buy_cnt end as uc_last14day_buy_of_avg_category_buy_rate,

case when category_last21day_click_cnt = 0 then 0 else (ui_last21day_category_click_cnt*category_last21day_click_user_cnt-category_last21day_click_cnt)/category_last21day_click_cnt end as uc_last21day_click_of_avg_category_click_rate,
case when category_last21day_bookmark_cnt = 0 then 0 else (ui_last21day_category_bookmark_cnt*category_last21day_bookmark_user_cnt-category_last21day_bookmark_cnt)/category_last21day_bookmark_cnt end as uc_last21day_bookmark_of_avg_category_bookmark_rate,
case when category_last21day_addcart_cnt = 0 then 0 else (ui_last21day_category_addcart_cnt*category_last21day_addcart_user_cnt-category_last21day_addcart_cnt)/category_last21day_addcart_cnt end as uc_last21day_addcart_of_avg_category_addcart_rate,
case when category_last21day_buy_cnt = 0 then 0 else (ui_last21day_category_buy_cnt*category_last21day_buy_user_cnt-category_last21day_buy_cnt)/category_last21day_buy_cnt end as uc_last21day_buy_of_avg_category_buy_rate,

case when category_last28day_click_cnt = 0 then 0 else (ui_last28day_category_click_cnt*category_last28day_click_user_cnt-category_last28day_click_cnt)/category_last28day_click_cnt end as uc_last28day_click_of_avg_category_click_rate,
case when category_last28day_bookmark_cnt = 0 then 0 else (ui_last28day_category_bookmark_cnt*category_last28day_bookmark_user_cnt-category_last28day_bookmark_cnt)/category_last28day_bookmark_cnt end as uc_last28day_bookmark_of_avg_category_bookmark_rate,
case when category_last28day_addcart_cnt = 0 then 0 else (ui_last28day_category_addcart_cnt*category_last28day_addcart_user_cnt-category_last28day_addcart_cnt)/category_last28day_addcart_cnt end as uc_last28day_addcart_of_avg_category_addcart_rate,
case when category_last28day_buy_cnt = 0 then 0 else (ui_last28day_category_buy_cnt*category_last28day_buy_user_cnt-category_last28day_buy_cnt)/category_last28day_buy_cnt end as uc_last28day_buy_of_avg_category_buy_rate,

case when (ui_first_behavior_day_dist - ui_last_behavior_day_dist)=0 then 0 else (ui_last28day_click_cnt*0.1+ui_last28day_bookmark_cnt+ui_last28day_addcart_cnt*2+ui_last28day_buy_cnt*5)/(ui_first_behavior_day_dist - ui_last_behavior_day_dist)
end as ui_last28day_avg_prevalent,

----------------------------------------------------------------------- 組合特征 -----------------------------------------------------------------------
-- 針對最后一天的組合特征
case when ui_last1day_addcart_cnt>0 AND ui_last1day_buy_cnt=0 then 0 when ui_last1day_addcart_cnt>0 AND ui_last1day_buy_cnt>0 then 2 else 1 end as ui_last1day_addcart_type,

case when ui_last_click_day_dist is null then log(2,28+1+1) else log(2,ui_last_click_day_dist+1) end as ui_last_click_day_log_dist,
case when ui_last_bookmark_day_dist is null then log(2,28+1+1) else log(2,ui_last_bookmark_day_dist+1) end as ui_last_bookmark_day_log_dist,
case when ui_last_addcart_day_dist is null then log(2,28+1+1) else log(2,ui_last_addcart_day_dist+1) end as ui_last_addcart_day_log_dist,
case when ui_last_buy_day_dist is null then log(2,28+1+1) else log(2,ui_last_buy_day_dist+1) end as ui_last_buy_day_log_dist,
case when ui_last_behavior_day_dist is null then log(2,28+1+1) else log(2,ui_last_behavior_day_dist+1) end as ui_last_behavior_day_log_dist,

case when ui_last_click_hour_dist is null then log(2,(28+1)*24+1) else log(2,ui_last_click_hour_dist+1) end as ui_last_click_hour_log_dist,
case when ui_last_bookmark_hour_dist is null then log(2,(28+1)*24+1) else log(2,ui_last_bookmark_hour_dist+1) end as ui_last_bookmark_hour_log_dist,
case when ui_last_addcart_hour_dist is null then log(2,(28+1)*24+1) else log(2,ui_last_addcart_hour_dist+1) end as ui_last_addcart_hour_log_dist,
case when ui_last_buy_hour_dist is null then log(2,(28+1)*24+1) else log(2,ui_last_buy_hour_dist+1) end as ui_last_buy_hour_log_dist,
case when ui_last_behavior_hour_dist is null then log(2,(28+1)*24+1) else log(2,ui_last_behavior_hour_dist+1) end as ui_last_behavior_hour_log_dist,

-- 用戶活躍度
(user_last1day_click_cnt*0.1 + user_last1day_bookmark_cnt*1 + user_last1day_addcart_cnt*2 + user_last1day_buy_cnt *5 ) as user_last1day_prevalent_rate,
(user_last3day_click_cnt*0.1 + user_last3day_bookmark_cnt*1 + user_last3day_addcart_cnt*2 + user_last3day_buy_cnt *5 ) as user_last3day_prevalent_rate,
(user_last7day_click_cnt*0.1 + user_last7day_bookmark_cnt*1 + user_last7day_addcart_cnt*2 + user_last7day_buy_cnt *5 ) as user_last7day_prevalent_rate,
(user_last14day_click_cnt*0.1 + user_last14day_bookmark_cnt*1 + user_last14day_addcart_cnt*2 + user_last14day_buy_cnt *5 ) as user_last14day_prevalent_rate,
(user_last21day_click_cnt*0.1 + user_last21day_bookmark_cnt*1 + user_last21day_addcart_cnt*2 + user_last21day_buy_cnt *5 ) as user_last21day_prevalent_rate,
(user_last28day_click_cnt*0.1 + user_last28day_bookmark_cnt*1 + user_last28day_addcart_cnt*2 + user_last28day_buy_cnt *5 ) as user_last28day_prevalent_rate,

(user_last3day_click_cnt*0.1 + user_last3day_bookmark_cnt*1 + user_last3day_addcart_cnt*2 + user_last3day_buy_cnt *5 )/3 as user_last3day_prevalent_avg_rate,
(user_last7day_click_cnt*0.1 + user_last7day_bookmark_cnt*1 + user_last7day_addcart_cnt*2 + user_last7day_buy_cnt *5 )/7 as user_last7day_prevalent_avg_rate,
(user_last14day_click_cnt*0.1 + user_last14day_bookmark_cnt*1 + user_last14day_addcart_cnt*2 + user_last14day_buy_cnt *5 )/14 as user_last14day_prevalent_avg_rate,
(user_last21day_click_cnt*0.1 + user_last21day_bookmark_cnt*1 + user_last21day_addcart_cnt*2 + user_last21day_buy_cnt *5 )/21 as user_last21day_prevalent_avg_rate,
(user_last28day_click_cnt*0.1 + user_last28day_bookmark_cnt*1 + user_last28day_addcart_cnt*2 + user_last28day_buy_cnt *5 )/28 as user_last28day_prevalent_avg_rate,

case when user_last1hour_behavior_diff_item_cnt>0 then user_last1hour_click_diff_item_cnt/user_last1hour_behavior_diff_item_cnt else 0 end as user_last1hour_click_of_item_behavior_rate,
case when user_last1hour_behavior_diff_item_cnt>0 then user_last1hour_addcart_diff_item_cnt/user_last1hour_behavior_diff_item_cnt else 0 end as user_last1hour_addcart_of_item_behavior_rate,
case when user_last2hour_behavior_diff_item_cnt>0 then user_last2hour_click_diff_item_cnt/user_last2hour_behavior_diff_item_cnt else 0 end as user_last2hour_click_of_item_behavior_rate,
case when user_last2hour_behavior_diff_item_cnt>0 then user_last2hour_addcart_diff_item_cnt/user_last2hour_behavior_diff_item_cnt else 0 end as user_last2hour_addcart_of_item_behavior_rate,
case when user_last3hour_behavior_diff_item_cnt>0 then user_last3hour_click_diff_item_cnt/user_last3hour_behavior_diff_item_cnt else 0 end as user_last3hour_click_of_item_behavior_rate,
case when user_last3hour_behavior_diff_item_cnt>0 then user_last3hour_addcart_diff_item_cnt/user_last3hour_behavior_diff_item_cnt else 0 end as user_last3hour_addcart_of_item_behavior_rate,
case when user_last4hour_behavior_diff_item_cnt>0 then user_last4hour_click_diff_item_cnt/user_last4hour_behavior_diff_item_cnt else 0 end as user_last4hour_click_of_item_behavior_rate,
case when user_last4hour_behavior_diff_item_cnt>0 then user_last4hour_addcart_diff_item_cnt/user_last4hour_behavior_diff_item_cnt else 0 end as user_last4hour_addcart_of_item_behavior_rate,
case when user_last9hour_behavior_diff_item_cnt>0 then user_last9hour_click_diff_item_cnt/user_last9hour_behavior_diff_item_cnt else 0 end as user_last9hour_click_of_item_behavior_rate,
case when user_last9hour_behavior_diff_item_cnt>0 then user_last9hour_addcart_diff_item_cnt/user_last9hour_behavior_diff_item_cnt else 0 end as user_last9hour_addcart_of_item_behavior_rate,
case when user_last15hour_behavior_diff_item_cnt>0 then user_last15hour_click_diff_item_cnt/user_last15hour_behavior_diff_item_cnt else 0 end as user_last15hour_click_of_item_behavior_rate,
case when user_last15hour_behavior_diff_item_cnt>0 then user_last15hour_addcart_diff_item_cnt/user_last15hour_behavior_diff_item_cnt else 0 end as user_last15hour_addcart_of_item_behavior_rate,

case when user_last1hour_behavior_diff_category_cnt>0 then user_last1hour_click_diff_category_cnt/user_last1hour_behavior_diff_category_cnt else 0 end as user_last1hour_click_of_category_behavior_rate,
case when user_last1hour_behavior_diff_category_cnt>0 then user_last1hour_addcart_diff_category_cnt/user_last1hour_behavior_diff_category_cnt else 0 end as user_last1hour_addcart_of_category_behavior_rate,
case when user_last2hour_behavior_diff_category_cnt>0 then user_last2hour_click_diff_category_cnt/user_last2hour_behavior_diff_category_cnt else 0 end as user_last2hour_click_of_category_behavior_rate,
case when user_last2hour_behavior_diff_category_cnt>0 then user_last2hour_addcart_diff_category_cnt/user_last2hour_behavior_diff_category_cnt else 0 end as user_last2hour_addcart_of_category_behavior_rate,
case when user_last3hour_behavior_diff_category_cnt>0 then user_last3hour_click_diff_category_cnt/user_last3hour_behavior_diff_category_cnt else 0 end as user_last3hour_click_of_category_behavior_rate,
case when user_last3hour_behavior_diff_category_cnt>0 then user_last3hour_addcart_diff_category_cnt/user_last3hour_behavior_diff_category_cnt else 0 end as user_last3hour_addcart_of_category_behavior_rate,
case when user_last4hour_behavior_diff_category_cnt>0 then user_last4hour_click_diff_category_cnt/user_last4hour_behavior_diff_category_cnt else 0 end as user_last4hour_click_of_category_behavior_rate,
case when user_last4hour_behavior_diff_category_cnt>0 then user_last4hour_addcart_diff_category_cnt/user_last4hour_behavior_diff_category_cnt else 0 end as user_last4hour_addcart_of_category_behavior_rate,
case when user_last9hour_behavior_diff_category_cnt>0 then user_last9hour_click_diff_category_cnt/user_last9hour_behavior_diff_category_cnt else 0 end as user_last9hour_click_of_category_behavior_rate,
case when user_last9hour_behavior_diff_category_cnt>0 then user_last9hour_addcart_diff_category_cnt/user_last9hour_behavior_diff_category_cnt else 0 end as user_last9hour_addcart_of_category_behavior_rate,
case when user_last15hour_behavior_diff_category_cnt>0 then user_last15hour_click_diff_category_cnt/user_last15hour_behavior_diff_category_cnt else 0 end as user_last15hour_click_of_category_behavior_rate,
case when user_last15hour_behavior_diff_category_cnt>0 then user_last15hour_addcart_diff_category_cnt/user_last15hour_behavior_diff_category_cnt else 0 end as user_last15hour_addcart_of_category_behavior_rate,

-- 商品熱度
(item_last1day_click_cnt*0.1 + item_last1day_bookmark_cnt*1 + item_last1day_addcart_cnt*2 + item_last1day_buy_cnt *5 ) as item_last1day_prevalent_rate,
(item_last3day_click_cnt*0.1 + item_last3day_bookmark_cnt*1 + item_last3day_addcart_cnt*2 + item_last3day_buy_cnt *5 ) as item_last3day_prevalent_rate,
(item_last7day_click_cnt*0.1 + item_last7day_bookmark_cnt*1 + item_last7day_addcart_cnt*2 + item_last7day_buy_cnt *5 ) as item_last7day_prevalent_rate,
(item_last14day_click_cnt*0.1 + item_last14day_bookmark_cnt*1 + item_last14day_addcart_cnt*2 + item_last14day_buy_cnt *5 ) as item_last14day_prevalent_rate,
(item_last21day_click_cnt*0.1 + item_last21day_bookmark_cnt*1 + item_last21day_addcart_cnt*2 + item_last21day_buy_cnt *5 ) as item_last21day_prevalent_rate,
(item_last28day_click_cnt*0.1 + item_last28day_bookmark_cnt*1 + item_last28day_addcart_cnt*2 + item_last28day_buy_cnt *5 ) as item_last28day_prevalent_rate,

(item_last3day_click_cnt*0.1 + item_last3day_bookmark_cnt*1 + item_last3day_addcart_cnt*2 + item_last3day_buy_cnt *5 )/3 as item_last3day_prevalent_avg_rate,
(item_last7day_click_cnt*0.1 + item_last7day_bookmark_cnt*1 + item_last7day_addcart_cnt*2 + item_last7day_buy_cnt *5 )/7 as item_last7day_prevalent_avg_rate,
(item_last14day_click_cnt*0.1 + item_last14day_bookmark_cnt*1 + item_last14day_addcart_cnt*2 + item_last14day_buy_cnt *5 )/14 as item_last14day_prevalent_avg_rate,
(item_last21day_click_cnt*0.1 + item_last21day_bookmark_cnt*1 + item_last21day_addcart_cnt*2 + item_last21day_buy_cnt *5 )/21 as item_last21day_prevalent_avg_rate,
(item_last28day_click_cnt*0.1 + item_last28day_bookmark_cnt*1 + item_last28day_addcart_cnt*2 + item_last28day_buy_cnt *5 )/28 as item_last28day_prevalent_avg_rate,

-- 品類熱度
(category_last1day_click_cnt*0.1 + category_last1day_bookmark_cnt*1 + category_last1day_addcart_cnt*2 + category_last1day_buy_cnt *5 ) as category_last1day_prevalent_rate,
(category_last3day_click_cnt*0.1 + category_last3day_bookmark_cnt*1 + category_last3day_addcart_cnt*2 + category_last3day_buy_cnt *5 ) as category_last3day_prevalent_rate,
(category_last7day_click_cnt*0.1 + category_last7day_bookmark_cnt*1 + category_last7day_addcart_cnt*2 + category_last7day_buy_cnt *5 ) as category_last7day_prevalent_rate,
(category_last14day_click_cnt*0.1 + category_last14day_bookmark_cnt*1 + category_last14day_addcart_cnt*2 + category_last14day_buy_cnt *5 ) as category_last14day_prevalent_rate,
(category_last21day_click_cnt*0.1 + category_last21day_bookmark_cnt*1 + category_last21day_addcart_cnt*2 + category_last21day_buy_cnt *5 ) as category_last21day_prevalent_rate,
(category_last28day_click_cnt*0.1 + category_last28day_bookmark_cnt*1 + category_last28day_addcart_cnt*2 + category_last28day_buy_cnt *5 ) as category_last28day_prevalent_rate,

(category_last3day_click_cnt*0.1 + category_last3day_bookmark_cnt*1 + category_last3day_addcart_cnt*2 + category_last3day_buy_cnt *5 )/3 as category_last3day_prevalent_avg_rate,
(category_last7day_click_cnt*0.1 + category_last7day_bookmark_cnt*1 + category_last7day_addcart_cnt*2 + category_last7day_buy_cnt *5 )/7 as category_last7day_prevalent_avg_rate,
(category_last14day_click_cnt*0.1 + category_last14day_bookmark_cnt*1 + category_last14day_addcart_cnt*2 + category_last14day_buy_cnt *5 )/14 as category_last14day_prevalent_avg_rate,
(category_last21day_click_cnt*0.1 + category_last21day_bookmark_cnt*1 + category_last21day_addcart_cnt*2 + category_last21day_buy_cnt *5 )/21 as category_last21day_prevalent_avg_rate,
(category_last28day_click_cnt*0.1 + category_last28day_bookmark_cnt*1 + category_last28day_addcart_cnt*2 + category_last28day_buy_cnt *5 )/28 as category_last28day_prevalent_avg_rate,

----------------------------------------------------- conjunction feature --------------------------------------------------------------------------------------------
case when ui_lastday_most_important_behavior_type =1 then ui_last_click_hour_dist
when ui_lastday_most_important_behavior_type =2 then ui_last_bookmark_hour_dist
when ui_lastday_most_important_behavior_type =3 then ui_last_addcart_hour_dist
when ui_lastday_most_important_behavior_type =4 then ui_last_buy_hour_dist
else 24+1 end as ui_last_most_important_behavior_hour_dist

FROM
(
SELECT t1.user_id,t1.item_id,t1.item_category,
case when buy_label is null then 0 else 1 end as buy_label,

case when item_last1day_behavior_user_cnt is null then 0else item_last1day_behavior_user_cnt endas item_last1day_behavior_user_cnt,
case when item_last3day_behavior_user_cnt is null then 0else item_last3day_behavior_user_cnt endas item_last3day_behavior_user_cnt,
case when item_last7day_behavior_user_cnt is null then 0else item_last7day_behavior_user_cnt endas item_last7day_behavior_user_cnt,
case when item_last14day_behavior_user_cnt is null then 0else item_last14day_behavior_user_cnt endas item_last14day_behavior_user_cnt,
case when item_last21day_behavior_user_cnt is null then 0else item_last21day_behavior_user_cnt endas item_last21day_behavior_user_cnt,
case when item_last28day_behavior_user_cnt is null then 0else item_last28day_behavior_user_cnt endas item_last28day_behavior_user_cnt,

case when category_last1day_behavior_user_cnt is null then 0else category_last1day_behavior_user_cnt endas category_last1day_behavior_user_cnt,
case when category_last3day_behavior_user_cnt is null then 0else category_last3day_behavior_user_cnt endas category_last3day_behavior_user_cnt,
case when category_last7day_behavior_user_cnt is null then 0else category_last7day_behavior_user_cnt endas category_last7day_behavior_user_cnt,
case when category_last14day_behavior_user_cnt is null then 0else category_last14day_behavior_user_cnt endas category_last14day_behavior_user_cnt,
case when category_last21day_behavior_user_cnt is null then 0else category_last21day_behavior_user_cnt endas category_last21day_behavior_user_cnt,
case when category_last28day_behavior_user_cnt is null then 0else category_last28day_behavior_user_cnt endas category_last28day_behavior_user_cnt,

case when item_last1day_click_user_cnt is null then 0
else item_last1day_click_user_cnt end as item_last1day_click_user_cnt,
case when item_last1day_bookmark_user_cnt is null then 0
else item_last1day_bookmark_user_cnt end as item_last1day_bookmark_user_cnt,
case when item_last1day_addcart_user_cnt is null then 0
else item_last1day_addcart_user_cnt end as item_last1day_addcart_user_cnt,
case when item_last1day_buy_user_cnt is null then 0
else item_last1day_buy_user_cnt end as item_last1day_buy_user_cnt,

case when item_last3day_click_user_cnt is null then 0else item_last3day_click_user_cnt endas item_last3day_click_user_cnt,
case when item_last3day_bookmark_user_cnt is null then 0
else item_last3day_bookmark_user_cnt end as item_last3day_bookmark_user_cnt,
case when item_last3day_addcart_user_cnt is null then 0
else item_last3day_addcart_user_cnt end as item_last3day_addcart_user_cnt,
case when item_last3day_buy_user_cnt is null then 0
else item_last3day_buy_user_cnt end as item_last3day_buy_user_cnt,

case when item_last7day_click_user_cnt is null then 0else item_last7day_click_user_cnt endas item_last7day_click_user_cnt,
case when item_last7day_bookmark_user_cnt is null then 0
else item_last7day_bookmark_user_cnt end as item_last7day_bookmark_user_cnt,
case when item_last7day_addcart_user_cnt is null then 0
else item_last7day_addcart_user_cnt end as item_last7day_addcart_user_cnt,
case when item_last7day_buy_user_cnt is null then 0
else item_last7day_buy_user_cnt end as item_last7day_buy_user_cnt,

case when item_last14day_click_user_cnt is null then 0else item_last14day_click_user_cnt endas item_last14day_click_user_cnt,
case when item_last14day_bookmark_user_cnt is null then 0
else item_last14day_bookmark_user_cnt end as item_last14day_bookmark_user_cnt,
case when item_last14day_addcart_user_cnt is null then 0
else item_last14day_addcart_user_cnt end as item_last14day_addcart_user_cnt,
case when item_last14day_buy_user_cnt is null then 0
else item_last14day_buy_user_cnt end as item_last14day_buy_user_cnt,

case when item_last21day_click_user_cnt is null then 0else item_last21day_click_user_cnt endas item_last21day_click_user_cnt,
case when item_last21day_bookmark_user_cnt is null then 0
else item_last21day_bookmark_user_cnt end as item_last21day_bookmark_user_cnt,
case when item_last21day_addcart_user_cnt is null then 0
else item_last21day_addcart_user_cnt end as item_last21day_addcart_user_cnt,
case when item_last21day_buy_user_cnt is null then 0
else item_last21day_buy_user_cnt end as item_last21day_buy_user_cnt,

case when item_last28day_click_user_cnt is null then 0else item_last28day_click_user_cnt endas item_last28day_click_user_cnt,
case when item_last28day_bookmark_user_cnt is null then 0
else item_last28day_bookmark_user_cnt end as item_last28day_bookmark_user_cnt,
case when item_last28day_addcart_user_cnt is null then 0
else item_last28day_addcart_user_cnt end as item_last28day_addcart_user_cnt,
case when item_last28day_buy_user_cnt is null then 0
else item_last28day_buy_user_cnt end as item_last28day_buy_user_cnt,

case when category_last1day_click_user_cnt is null then 0else category_last1day_click_user_cnt endas category_last1day_click_user_cnt,
case when category_last1day_bookmark_user_cnt is null then 0
else category_last1day_bookmark_user_cnt end
as category_last1day_bookmark_user_cnt,
case when category_last1day_addcart_user_cnt is null then 0
else category_last1day_addcart_user_cnt end
as category_last1day_addcart_user_cnt,
case when category_last1day_buy_user_cnt is null then 0
else category_last1day_buy_user_cnt end as category_last1day_buy_user_cnt,

case when category_last3day_click_user_cnt is null then 0else category_last3day_click_user_cnt endas category_last3day_click_user_cnt,
case when category_last3day_bookmark_user_cnt is null then 0
else category_last3day_bookmark_user_cnt end
as category_last3day_bookmark_user_cnt,
case when category_last3day_addcart_user_cnt is null then 0
else category_last3day_addcart_user_cnt end
as category_last3day_addcart_user_cnt,
case when category_last3day_buy_user_cnt is null then 0
else category_last3day_buy_user_cnt end as category_last3day_buy_user_cnt,

case when category_last7day_click_user_cnt is null then 0else category_last7day_click_user_cnt endas category_last7day_click_user_cnt,
case when category_last7day_bookmark_user_cnt is null then 0
else category_last7day_bookmark_user_cnt end
as category_last7day_bookmark_user_cnt,
case when category_last7day_addcart_user_cnt is null then 0
else category_last7day_addcart_user_cnt end
as category_last7day_addcart_user_cnt,
case when category_last7day_buy_user_cnt is null then 0
else category_last7day_buy_user_cnt end as category_last7day_buy_user_cnt,

case when category_last14day_click_user_cnt is null then 0else category_last14day_click_user_cnt endas category_last14day_click_user_cnt,
case when category_last14day_bookmark_user_cnt is null then 0
else category_last14day_bookmark_user_cnt end
as category_last14day_bookmark_user_cnt,
case when category_last14day_addcart_user_cnt is null then 0
else category_last14day_addcart_user_cnt end
as category_last14day_addcart_user_cnt,
case when category_last14day_buy_user_cnt is null then 0
else category_last14day_buy_user_cnt end as category_last14day_buy_user_cnt,

case when category_last21day_click_user_cnt is null then 0else category_last21day_click_user_cnt endas category_last21day_click_user_cnt,
case when category_last21day_bookmark_user_cnt is null then 0
else category_last21day_bookmark_user_cnt end
as category_last21day_bookmark_user_cnt,
case when category_last21day_addcart_user_cnt is null then 0
else category_last21day_addcart_user_cnt end
as category_last21day_addcart_user_cnt,
case when category_last21day_buy_user_cnt is null then 0
else category_last21day_buy_user_cnt end as category_last21day_buy_user_cnt,

case when category_last28day_click_user_cnt is null then 0else category_last28day_click_user_cnt endas category_last28day_click_user_cnt,
case when category_last28day_bookmark_user_cnt is null then 0
else category_last28day_bookmark_user_cnt end
as category_last28day_bookmark_user_cnt,
case when category_last28day_addcart_user_cnt is null then 0
else category_last28day_addcart_user_cnt end
as category_last28day_addcart_user_cnt,
case when category_last28day_buy_user_cnt is null then 0
else category_last28day_buy_user_cnt end as category_last28day_buy_user_cnt,

case when item_last1day_click_cnt is null then 0else item_last1day_click_cnt endas item_last1day_click_cnt,
case when item_last1day_bookmark_cnt is null then 0 else item_last1day_bookmark_cnt end as item_last1day_bookmark_cnt,
case when item_last1day_addcart_cnt is null then 0else item_last1day_addcart_cnt endas item_last1day_addcart_cnt,
case when item_last1day_buy_cnt is null then 0else item_last1day_buy_cnt endas item_last1day_buy_cnt,

case when item_last3day_click_cnt is null then 0else item_last3day_click_cnt endas item_last3day_click_cnt,
case when item_last3day_bookmark_cnt is null then 0 else item_last3day_bookmark_cnt end as item_last3day_bookmark_cnt,
case when item_last3day_addcart_cnt is null then 0else item_last3day_addcart_cnt endas item_last3day_addcart_cnt,
case when item_last3day_buy_cnt is null then 0else item_last3day_buy_cnt endas item_last3day_buy_cnt,

case when item_last7day_click_cnt is null then 0else item_last7day_click_cnt endas item_last7day_click_cnt,
case when item_last7day_bookmark_cnt is null then 0 else item_last7day_bookmark_cnt end as item_last7day_bookmark_cnt,
case when item_last7day_addcart_cnt is null then 0else item_last7day_addcart_cnt endas item_last7day_addcart_cnt,
case when item_last7day_buy_cnt is null then 0else item_last7day_buy_cnt endas item_last7day_buy_cnt,

case when item_last14day_click_cnt is null then 0else item_last14day_click_cnt endas item_last14day_click_cnt,
case when item_last14day_bookmark_cnt is null then 0else item_last14day_bookmark_cnt end as item_last14day_bookmark_cnt,
case when item_last14day_addcart_cnt is null then 0else item_last14day_addcart_cnt endas item_last14day_addcart_cnt,
case when item_last14day_buy_cnt is null then 0else item_last14day_buy_cnt endas item_last14day_buy_cnt,

case when item_last21day_click_cnt is null then 0else item_last21day_click_cnt endas item_last21day_click_cnt,
case when item_last21day_bookmark_cnt is null then 0else item_last21day_bookmark_cnt end as item_last21day_bookmark_cnt,
case when item_last21day_addcart_cnt is null then 0else item_last21day_addcart_cnt endas item_last21day_addcart_cnt,
case when item_last21day_buy_cnt is null then 0else item_last21day_buy_cnt endas item_last21day_buy_cnt,

case when item_last28day_click_cnt is null then 0else item_last28day_click_cnt endas item_last28day_click_cnt,
case when item_last28day_bookmark_cnt is null then 0else item_last28day_bookmark_cnt end as item_last28day_bookmark_cnt,
case when item_last28day_addcart_cnt is null then 0else item_last28day_addcart_cnt endas item_last28day_addcart_cnt,
case when item_last28day_buy_cnt is null then 0else item_last28day_buy_cnt endas item_last28day_buy_cnt,

case when category_last1day_click_cnt is null then 0else category_last1day_click_cnt endas category_last1day_click_cnt,
case when category_last1day_bookmark_cnt is null then 0 else category_last1day_bookmark_cnt end as category_last1day_bookmark_cnt,
case when category_last1day_addcart_cnt is null then 0else category_last1day_addcart_cnt endas category_last1day_addcart_cnt,
case when category_last1day_buy_cnt is null then 0else category_last1day_buy_cnt endas category_last1day_buy_cnt,

case when category_last3day_click_cnt is null then 0else category_last3day_click_cnt endas category_last3day_click_cnt,
case when category_last3day_bookmark_cnt is null then 0 else category_last3day_bookmark_cnt end as category_last3day_bookmark_cnt,
case when category_last3day_addcart_cnt is null then 0else category_last3day_addcart_cnt endas category_last3day_addcart_cnt,
case when category_last3day_buy_cnt is null then 0else category_last3day_buy_cnt endas category_last3day_buy_cnt,

case when category_last7day_click_cnt is null then 0else category_last7day_click_cnt endas category_last7day_click_cnt,
case when category_last7day_bookmark_cnt is null then 0 else category_last7day_bookmark_cnt end as category_last7day_bookmark_cnt,
case when category_last7day_addcart_cnt is null then 0else category_last7day_addcart_cnt endas category_last7day_addcart_cnt,
case when category_last7day_buy_cnt is null then 0else category_last7day_buy_cnt endas category_last7day_buy_cnt,

case when category_last14day_click_cnt is null then 0else category_last14day_click_cnt endas category_last14day_click_cnt,
case when category_last14day_bookmark_cnt is null then 0else category_last14day_bookmark_cnt end as category_last14day_bookmark_cnt,
case when category_last14day_addcart_cnt is null then 0else category_last14day_addcart_cnt endas category_last14day_addcart_cnt,
case when category_last14day_buy_cnt is null then 0else category_last14day_buy_cnt endas category_last14day_buy_cnt,

case when category_last21day_click_cnt is null then 0else category_last21day_click_cnt endas category_last21day_click_cnt,
case when category_last21day_bookmark_cnt is null then 0else category_last21day_bookmark_cnt end as category_last21day_bookmark_cnt,
case when category_last21day_addcart_cnt is null then 0else category_last21day_addcart_cnt endas category_last21day_addcart_cnt,
case when category_last21day_buy_cnt is null then 0else category_last21day_buy_cnt endas category_last21day_buy_cnt,

case when category_last28day_click_cnt is null then 0else category_last28day_click_cnt endas category_last28day_click_cnt,
case when category_last28day_bookmark_cnt is null then 0else category_last28day_bookmark_cnt endas category_last28day_bookmark_cnt,
case when category_last28day_addcart_cnt is null then 0else category_last28day_addcart_cnt endas category_last28day_addcart_cnt,
case when category_last28day_buy_cnt is null then 0else category_last28day_buy_cnt endas category_last28day_buy_cnt,

-- 2015.06.21新增特征
case when item_last3day_mean_prior_click_next_buy_cnt is null then 0 else item_last3day_mean_prior_click_next_buy_cnt end as item_last3day_mean_prior_click_next_buy_cnt,
case when item_last3day_mean_prior_bookmark_next_buy_cnt is null then 0 else item_last3day_mean_prior_bookmark_next_buy_cnt end as item_last3day_mean_prior_bookmark_next_buy_cnt,
case when item_last3day_mean_prior_addcart_next_buy_cnt is null then 0 else item_last3day_mean_prior_addcart_next_buy_cnt end as item_last3day_mean_prior_addcart_next_buy_cnt,
case when item_last3day_mean_prior_buy_next_buy_cnt is null then 0 else item_last3day_mean_prior_buy_next_buy_cnt end as item_last3day_mean_prior_buy_next_buy_cnt,

case when item_last7day_mean_prior_click_next_buy_cnt is null then 0 else item_last7day_mean_prior_click_next_buy_cnt end as item_last7day_mean_prior_click_next_buy_cnt,
case when item_last7day_mean_prior_bookmark_next_buy_cnt is null then 0 else item_last7day_mean_prior_bookmark_next_buy_cnt end as item_last7day_mean_prior_bookmark_next_buy_cnt,
case when item_last7day_mean_prior_addcart_next_buy_cnt is null then 0 else item_last7day_mean_prior_addcart_next_buy_cnt end as item_last7day_mean_prior_addcart_next_buy_cnt,
case when item_last7day_mean_prior_buy_next_buy_cnt is null then 0 else item_last7day_mean_prior_buy_next_buy_cnt end as item_last7day_mean_prior_buy_next_buy_cnt,

case when category_last3day_mean_prior_click_next_buy_cnt is null then 0 else category_last3day_mean_prior_click_next_buy_cnt end as category_last3day_mean_prior_click_next_buy_cnt,
case when category_last3day_mean_prior_bookmark_next_buy_cnt is null then 0 else category_last3day_mean_prior_bookmark_next_buy_cnt end as category_last3day_mean_prior_bookmark_next_buy_cnt,
case when category_last3day_mean_prior_addcart_next_buy_cnt is null then 0 else category_last3day_mean_prior_addcart_next_buy_cnt end as category_last3day_mean_prior_addcart_next_buy_cnt,
case when category_last3day_mean_prior_buy_next_buy_cnt is null then 0 else category_last3day_mean_prior_buy_next_buy_cnt end as category_last3day_mean_prior_buy_next_buy_cnt,

case when category_last7day_mean_prior_click_next_buy_cnt is null then 0 else category_last7day_mean_prior_click_next_buy_cnt end as category_last7day_mean_prior_click_next_buy_cnt,
case when category_last7day_mean_prior_bookmark_next_buy_cnt is null then 0 else category_last7day_mean_prior_bookmark_next_buy_cnt end as category_last7day_mean_prior_bookmark_next_buy_cnt,
case when category_last7day_mean_prior_addcart_next_buy_cnt is null then 0 else category_last7day_mean_prior_addcart_next_buy_cnt end as category_last7day_mean_prior_addcart_next_buy_cnt,
case when category_last7day_mean_prior_buy_next_buy_cnt is null then 0 else category_last7day_mean_prior_buy_next_buy_cnt end as category_last7day_mean_prior_buy_next_buy_cnt,

--- 2015.06.22 新增特征
case when item_last28day_dumplicated_buy_user_cnt is null then 0 else item_last28day_dumplicated_buy_user_cnt end as item_last28day_dumplicated_buy_user_cnt,
case when item_last28day_dumplicated_buy_cnt is null then 0 else item_last28day_dumplicated_buy_cnt end as item_last28day_dumplicated_buy_cnt,
case when category_last28day_dumplicated_buy_user_cnt is null then 0 else category_last28day_dumplicated_buy_user_cnt end as category_last28day_dumplicated_buy_user_cnt,
case when category_last28day_dumplicated_buy_cnt is null then 0 else category_last28day_dumplicated_buy_cnt end as category_last28day_dumplicated_buy_cnt,

case when user_last1day_behavior_item_cnt is null then 0 else user_last1day_behavior_item_cnt end as user_last1day_behavior_item_cnt,
case when user_last3day_behavior_item_cnt is null then 0 else user_last3day_behavior_item_cnt end as user_last3day_behavior_item_cnt,
case when user_last7day_behavior_item_cnt is null then 0 else user_last7day_behavior_item_cnt end as user_last7day_behavior_item_cnt,
case when user_last14day_behavior_item_cnt is null then 0 else user_last14day_behavior_item_cnt end as user_last14day_behavior_item_cnt,
case when user_last21day_behavior_item_cnt is null then 0 else user_last21day_behavior_item_cnt end as user_last21day_behavior_item_cnt,
case when user_last28day_behavior_item_cnt is null then 0 else user_last28day_behavior_item_cnt end as user_last28day_behavior_item_cnt,

case when user_last1day_click_item_cnt is null then 0else user_last1day_click_item_cnt endAS user_last1day_click_item_cnt,
case when user_last1day_bookmark_item_cnt is null then 0
else user_last1day_bookmark_item_cnt end AS user_last1day_bookmark_item_cnt,
case when user_last1day_addcart_item_cnt is null then 0
else user_last1day_addcart_item_cnt end AS user_last1day_addcart_item_cnt,
case when user_last1day_buy_item_cnt is null then 0
else user_last1day_buy_item_cnt end AS user_last1day_buy_item_cnt,

case when user_last3day_click_item_cnt is null then 0else user_last3day_click_item_cnt endAS user_last3day_click_item_cnt,
case when user_last3day_bookmark_item_cnt is null then 0
else user_last3day_bookmark_item_cnt end AS user_last3day_bookmark_item_cnt,
case when user_last3day_addcart_item_cnt is null then 0
else user_last3day_addcart_item_cnt end AS user_last3day_addcart_item_cnt,
case when user_last3day_buy_item_cnt is null then 0
else user_last3day_buy_item_cnt end AS user_last3day_buy_item_cnt,

case when user_last7day_click_item_cnt is null then 0else user_last7day_click_item_cnt endAS user_last7day_click_item_cnt,
case when user_last7day_bookmark_item_cnt is null then 0
else user_last7day_bookmark_item_cnt end AS user_last7day_bookmark_item_cnt,
case when user_last7day_addcart_item_cnt is null then 0
else user_last7day_addcart_item_cnt end AS user_last7day_addcart_item_cnt,
case when user_last7day_buy_item_cnt is null then 0
else user_last7day_buy_item_cnt end AS user_last7day_buy_item_cnt,

case when user_last14day_click_item_cnt is null then 0else user_last14day_click_item_cnt endAS user_last14day_click_item_cnt,
case when user_last14day_bookmark_item_cnt is null then 0
else user_last14day_bookmark_item_cnt end AS user_last14day_bookmark_item_cnt,
case when user_last14day_addcart_item_cnt is null then 0
else user_last14day_addcart_item_cnt end AS user_last14day_addcart_item_cnt,
case when user_last14day_buy_item_cnt is null then 0
else user_last14day_buy_item_cnt end AS user_last14day_buy_item_cnt,

case when user_last21day_click_item_cnt is null then 0else user_last21day_click_item_cnt endAS user_last21day_click_item_cnt,
case when user_last21day_bookmark_item_cnt is null then 0
else user_last21day_bookmark_item_cnt end AS user_last21day_bookmark_item_cnt,
case when user_last21day_addcart_item_cnt is null then 0
else user_last21day_addcart_item_cnt end AS user_last21day_addcart_item_cnt,
case when user_last21day_buy_item_cnt is null then 0
else user_last21day_buy_item_cnt end AS user_last21day_buy_item_cnt,

case when user_last28day_click_item_cnt is null then 0
else user_last28day_click_item_cnt end AS user_last28day_click_item_cnt,
case when user_last28day_bookmark_item_cnt is null then 0
else user_last28day_bookmark_item_cnt end AS user_last28day_bookmark_item_cnt,
case when user_last28day_addcart_item_cnt is null then 0
else user_last28day_addcart_item_cnt end AS user_last28day_addcart_item_cnt,
case when user_last28day_buy_item_cnt is null then 0
else user_last28day_buy_item_cnt end AS user_last28day_buy_item_cnt,

case when user_last1day_behavior_category_cnt is null then 0 else user_last1day_behavior_category_cnt end as user_last1day_behavior_category_cnt,
case when user_last3day_behavior_category_cnt is null then 0 else user_last3day_behavior_category_cnt end as user_last3day_behavior_category_cnt,
case when user_last7day_behavior_category_cnt is null then 0 else user_last7day_behavior_category_cnt end as user_last7day_behavior_category_cnt,
case when user_last14day_behavior_category_cnt is null then 0 else user_last14day_behavior_category_cnt end as user_last14day_behavior_category_cnt,
case when user_last21day_behavior_category_cnt is null then 0 else user_last21day_behavior_category_cnt end as user_last21day_behavior_category_cnt,
case when user_last28day_behavior_category_cnt is null then 0 else user_last28day_behavior_category_cnt end as user_last28day_behavior_category_cnt,

case when user_last1day_click_category_cnt is null then 0else user_last1day_click_category_cnt endAS user_last1day_click_category_cnt,
case when user_last1day_bookmark_category_cnt is null then 0
else user_last1day_bookmark_category_cnt end
AS user_last1day_bookmark_category_cnt,
case when user_last1day_addcart_category_cnt is null then 0
else user_last1day_addcart_category_cnt end
AS user_last1day_addcart_category_cnt,
case when user_last1day_buy_category_cnt is null then 0
else user_last1day_buy_category_cnt end AS user_last1day_buy_category_cnt,

case when user_last3day_click_category_cnt is null then 0else user_last3day_click_category_cnt endAS user_last3day_click_category_cnt,
case when user_last3day_bookmark_category_cnt is null then 0
else user_last3day_bookmark_category_cnt end
AS user_last3day_bookmark_category_cnt,
case when user_last3day_addcart_category_cnt is null then 0
else user_last3day_addcart_category_cnt end
AS user_last3day_addcart_category_cnt,
case when user_last3day_buy_category_cnt is null then 0
else user_last3day_buy_category_cnt end AS user_last3day_buy_category_cnt,

case when user_last7day_click_category_cnt is null then 0else user_last7day_click_category_cnt endAS user_last7day_click_category_cnt,
case when user_last7day_bookmark_category_cnt is null then 0
else user_last7day_bookmark_category_cnt end
AS user_last7day_bookmark_category_cnt,
case when user_last7day_addcart_category_cnt is null then 0
else user_last7day_addcart_category_cnt end
AS user_last7day_addcart_category_cnt,
case when user_last7day_buy_category_cnt is null then 0
else user_last7day_buy_category_cnt end AS user_last7day_buy_category_cnt,

case when user_last14day_click_category_cnt is null then 0else user_last14day_click_category_cnt endAS user_last14day_click_category_cnt,
case when user_last14day_bookmark_category_cnt is null then 0
else user_last14day_bookmark_category_cnt end
AS user_last14day_bookmark_category_cnt,
case when user_last14day_addcart_category_cnt is null then 0
else user_last14day_addcart_category_cnt end
AS user_last14day_addcart_category_cnt,
case when user_last14day_buy_category_cnt is null then 0
else user_last14day_buy_category_cnt end AS user_last14day_buy_category_cnt,

case when user_last21day_click_category_cnt is null then 0else user_last21day_click_category_cnt endAS user_last21day_click_category_cnt,
case when user_last21day_bookmark_category_cnt is null then 0
else user_last21day_bookmark_category_cnt end
AS user_last21day_bookmark_category_cnt,
case when user_last21day_addcart_category_cnt is null then 0
else user_last21day_addcart_category_cnt end
AS user_last21day_addcart_category_cnt,
case when user_last21day_buy_category_cnt is null then 0
else user_last21day_buy_category_cnt end AS user_last21day_buy_category_cnt,

case when user_last28day_click_category_cnt is null then 0else user_last28day_click_category_cnt endAS user_last28day_click_category_cnt,
case when user_last28day_bookmark_category_cnt is null then 0
else user_last28day_bookmark_category_cnt end
AS user_last28day_bookmark_category_cnt,
case when user_last28day_addcart_category_cnt is null then 0
else user_last28day_addcart_category_cnt end
AS user_last28day_addcart_category_cnt,
case when user_last28day_buy_category_cnt is null then 0
else user_last28day_buy_category_cnt end AS user_last28day_buy_category_cnt,

case when user_last1day_click_cnt is null then 0else user_last1day_click_cnt endas user_last1day_click_cnt,
case when user_last1day_bookmark_cnt is null then 0 else user_last1day_bookmark_cnt end as user_last1day_bookmark_cnt,
case when user_last1day_addcart_cnt is null then 0else user_last1day_addcart_cnt endas user_last1day_addcart_cnt,
case when user_last1day_buy_cnt is null then 0else user_last1day_buy_cnt endas user_last1day_buy_cnt,

case when user_last3day_click_cnt is null then 0else user_last3day_click_cnt endas user_last3day_click_cnt,
case when user_last3day_bookmark_cnt is null then 0 else user_last3day_bookmark_cnt end as user_last3day_bookmark_cnt,
case when user_last3day_addcart_cnt is null then 0else user_last3day_addcart_cnt endas user_last3day_addcart_cnt,
case when user_last3day_buy_cnt is null then 0else user_last3day_buy_cnt endas user_last3day_buy_cnt,

case when user_last7day_click_cnt is null then 0else user_last7day_click_cnt endas user_last7day_click_cnt,
case when user_last7day_bookmark_cnt is null then 0 else user_last7day_bookmark_cnt end as user_last7day_bookmark_cnt,
case when user_last7day_addcart_cnt is null then 0else user_last7day_addcart_cnt endas user_last7day_addcart_cnt,
case when user_last7day_buy_cnt is null then 0else user_last7day_buy_cnt endas user_last7day_buy_cnt,

case when user_last14day_click_cnt is null then 0else user_last14day_click_cnt endas user_last14day_click_cnt,
case when user_last14day_bookmark_cnt is null then 0 else user_last14day_bookmark_cnt end as user_last14day_bookmark_cnt,
case when user_last14day_addcart_cnt is null then 0else user_last14day_addcart_cnt endas user_last14day_addcart_cnt,
case when user_last14day_buy_cnt is null then 0else user_last14day_buy_cnt endas user_last14day_buy_cnt,

case when user_last21day_click_cnt is null then 0else user_last21day_click_cnt endas user_last21day_click_cnt,
case when user_last21day_bookmark_cnt is null then 0 else user_last21day_bookmark_cnt end as user_last21day_bookmark_cnt,
case when user_last21day_addcart_cnt is null then 0else user_last21day_addcart_cnt endas user_last21day_addcart_cnt,
case when user_last21day_buy_cnt is null then 0else user_last21day_buy_cnt endas user_last21day_buy_cnt,

case when user_last28day_click_cnt is null then 0else user_last28day_click_cnt endas user_last28day_click_cnt,
case when user_last28day_bookmark_cnt is null then 0 else user_last28day_bookmark_cnt end as user_last28day_bookmark_cnt,
case when user_last28day_addcart_cnt is null then 0else user_last28day_addcart_cnt endas user_last28day_addcart_cnt,
case when user_last28day_buy_cnt is null then 0else user_last28day_buy_cnt endas user_last28day_buy_cnt,

case when user_last28day_click_diff_day_cnt is null then 0 else user_last28day_click_diff_day_cnt end as user_last28day_click_diff_day_cnt,
case when user_last28day_bookmark_diff_day_cnt is null then 0 else user_last28day_bookmark_diff_day_cnt end as user_last28day_bookmark_diff_day_cnt,
case when user_last28day_addcart_diff_day_cnt is null then 0 else user_last28day_addcart_diff_day_cnt end as user_last28day_addcart_diff_day_cnt,
case when user_last28day_buy_diff_day_cnt is null then 0 else user_last28day_buy_diff_day_cnt end as user_last28day_buy_diff_day_cnt,
case when user_last28day_behavior_diff_day_cnt is null then 0 else user_last28day_behavior_diff_day_cnt end as user_last28day_behavior_diff_day_cnt,

case when user_last1hour_behavior_diff_item_cnt is null then 0 else user_last1hour_behavior_diff_item_cnt end as user_last1hour_behavior_diff_item_cnt,
case when user_last2hour_behavior_diff_item_cnt is null then 0 else user_last2hour_behavior_diff_item_cnt end as user_last2hour_behavior_diff_item_cnt,
case when user_last3hour_behavior_diff_item_cnt is null then 0 else user_last3hour_behavior_diff_item_cnt end as user_last3hour_behavior_diff_item_cnt,
case when user_last4hour_behavior_diff_item_cnt is null then 0 else user_last4hour_behavior_diff_item_cnt end as user_last4hour_behavior_diff_item_cnt,
case when user_last9hour_behavior_diff_item_cnt is null then 0 else user_last9hour_behavior_diff_item_cnt end as user_last9hour_behavior_diff_item_cnt,
case when user_last15hour_behavior_diff_item_cnt is null then 0 else user_last15hour_behavior_diff_item_cnt end as user_last15hour_behavior_diff_item_cnt,

case when user_last1hour_behavior_diff_category_cnt is null then 0 else user_last1hour_behavior_diff_category_cnt end as user_last1hour_behavior_diff_category_cnt,
case when user_last2hour_behavior_diff_category_cnt is null then 0 else user_last2hour_behavior_diff_category_cnt end as user_last2hour_behavior_diff_category_cnt,
case when user_last3hour_behavior_diff_category_cnt is null then 0 else user_last3hour_behavior_diff_category_cnt end as user_last3hour_behavior_diff_category_cnt,
case when user_last4hour_behavior_diff_category_cnt is null then 0 else user_last4hour_behavior_diff_category_cnt end as user_last4hour_behavior_diff_category_cnt,
case when user_last9hour_behavior_diff_category_cnt is null then 0 else user_last9hour_behavior_diff_category_cnt end as user_last9hour_behavior_diff_category_cnt,
case when user_last15hour_behavior_diff_category_cnt is null then 0 else user_last15hour_behavior_diff_category_cnt end as user_last15hour_behavior_diff_category_cnt,

case when user_last1hour_click_diff_item_cnt is null then 0else user_last1hour_click_diff_item_cnt endas user_last1hour_click_diff_item_cnt,
case when user_last1hour_bookmark_diff_item_cnt is null then 0else user_last1hour_bookmark_diff_item_cnt endas user_last1hour_bookmark_diff_item_cnt,
case when user_last1hour_addcart_diff_item_cnt is null then 0else user_last1hour_addcart_diff_item_cnt endas user_last1hour_addcart_diff_item_cnt,
case when user_last1hour_buy_diff_item_cnt is null then 0else user_last1hour_buy_diff_item_cnt endas user_last1hour_buy_diff_item_cnt,

case when user_last1hour_click_diff_category_cnt is null then 0else user_last1hour_click_diff_category_cnt endas user_last1hour_click_diff_category_cnt,
case when user_last1hour_bookmark_diff_category_cnt is null then 0else user_last1hour_bookmark_diff_category_cnt endas user_last1hour_bookmark_diff_category_cnt,
case when user_last1hour_addcart_diff_category_cnt is null then 0else user_last1hour_addcart_diff_category_cnt endas user_last1hour_addcart_diff_category_cnt,
case when user_last1hour_buy_diff_category_cnt is null then 0else user_last1hour_buy_diff_category_cnt endas user_last1hour_buy_diff_category_cnt,

case when user_last2hour_click_diff_item_cnt is null then 0else user_last2hour_click_diff_item_cnt endas user_last2hour_click_diff_item_cnt,
case when user_last2hour_bookmark_diff_item_cnt is null then 0else user_last2hour_bookmark_diff_item_cnt endas user_last2hour_bookmark_diff_item_cnt,
case when user_last2hour_addcart_diff_item_cnt is null then 0else user_last2hour_addcart_diff_item_cnt endas user_last2hour_addcart_diff_item_cnt,
case when user_last2hour_buy_diff_item_cnt is null then 0else user_last2hour_buy_diff_item_cnt endas user_last2hour_buy_diff_item_cnt,

case when user_last2hour_click_diff_category_cnt is null then 0else user_last2hour_click_diff_category_cnt endas user_last2hour_click_diff_category_cnt,
case when user_last2hour_bookmark_diff_category_cnt is null then 0else user_last2hour_bookmark_diff_category_cnt endas user_last2hour_bookmark_diff_category_cnt,
case when user_last2hour_addcart_diff_category_cnt is null then 0else user_last2hour_addcart_diff_category_cnt endas user_last2hour_addcart_diff_category_cnt,
case when user_last2hour_buy_diff_category_cnt is null then 0else user_last2hour_buy_diff_category_cnt endas user_last2hour_buy_diff_category_cnt,

case when user_last3hour_click_diff_item_cnt is null then 0else user_last3hour_click_diff_item_cnt endas user_last3hour_click_diff_item_cnt,
case when user_last3hour_bookmark_diff_item_cnt is null then 0else user_last3hour_bookmark_diff_item_cnt endas user_last3hour_bookmark_diff_item_cnt,
case when user_last3hour_addcart_diff_item_cnt is null then 0else user_last3hour_addcart_diff_item_cnt endas user_last3hour_addcart_diff_item_cnt,
case when user_last3hour_buy_diff_item_cnt is null then 0else user_last3hour_buy_diff_item_cnt endas user_last3hour_buy_diff_item_cnt,

case when user_last3hour_click_diff_category_cnt is null then 0else user_last3hour_click_diff_category_cnt endas user_last3hour_click_diff_category_cnt,
case when user_last3hour_bookmark_diff_category_cnt is null then 0else user_last3hour_bookmark_diff_category_cnt endas user_last3hour_bookmark_diff_category_cnt,
case when user_last3hour_addcart_diff_category_cnt is null then 0else user_last3hour_addcart_diff_category_cnt endas user_last3hour_addcart_diff_category_cnt,
case when user_last3hour_buy_diff_category_cnt is null then 0else user_last3hour_buy_diff_category_cnt endas user_last3hour_buy_diff_category_cnt,

case when user_last4hour_click_diff_item_cnt is null then 0else user_last4hour_click_diff_item_cnt endas user_last4hour_click_diff_item_cnt,
case when user_last4hour_bookmark_diff_item_cnt is null then 0else user_last4hour_bookmark_diff_item_cnt endas user_last4hour_bookmark_diff_item_cnt,
case when user_last4hour_addcart_diff_item_cnt is null then 0else user_last4hour_addcart_diff_item_cnt endas user_last4hour_addcart_diff_item_cnt,
case when user_last4hour_buy_diff_item_cnt is null then 0else user_last4hour_buy_diff_item_cnt endas user_last4hour_buy_diff_item_cnt,

case when user_last4hour_click_diff_category_cnt is null then 0else user_last4hour_click_diff_category_cnt endas user_last4hour_click_diff_category_cnt,
case when user_last4hour_bookmark_diff_category_cnt is null then 0else user_last4hour_bookmark_diff_category_cnt endas user_last4hour_bookmark_diff_category_cnt,
case when user_last4hour_addcart_diff_category_cnt is null then 0else user_last4hour_addcart_diff_category_cnt endas user_last4hour_addcart_diff_category_cnt,
case when user_last4hour_buy_diff_category_cnt is null then 0else user_last4hour_buy_diff_category_cnt endas user_last4hour_buy_diff_category_cnt,

case when user_last9hour_click_diff_item_cnt is null then 0else user_last9hour_click_diff_item_cnt endas user_last9hour_click_diff_item_cnt,
case when user_last9hour_bookmark_diff_item_cnt is null then 0else user_last9hour_bookmark_diff_item_cnt endas user_last9hour_bookmark_diff_item_cnt,
case when user_last9hour_addcart_diff_item_cnt is null then 0else user_last9hour_addcart_diff_item_cnt endas user_last9hour_addcart_diff_item_cnt,
case when user_last9hour_buy_diff_item_cnt is null then 0else user_last9hour_buy_diff_item_cnt endas user_last9hour_buy_diff_item_cnt,

case when user_last9hour_click_diff_category_cnt is null then 0else user_last9hour_click_diff_category_cnt endas user_last9hour_click_diff_category_cnt,
case when user_last9hour_bookmark_diff_category_cnt is null then 0else user_last9hour_bookmark_diff_category_cnt endas user_last9hour_bookmark_diff_category_cnt,
case when user_last9hour_addcart_diff_category_cnt is null then 0else user_last9hour_addcart_diff_category_cnt endas user_last9hour_addcart_diff_category_cnt,
case when user_last9hour_buy_diff_category_cnt is null then 0else user_last9hour_buy_diff_category_cnt endas user_last9hour_buy_diff_category_cnt,

case when user_last15hour_click_diff_item_cnt is null then 0else user_last15hour_click_diff_item_cnt endas user_last15hour_click_diff_item_cnt,
case when user_last15hour_bookmark_diff_item_cnt is null then 0else user_last15hour_bookmark_diff_item_cnt endas user_last15hour_bookmark_diff_item_cnt,
case when user_last15hour_addcart_diff_item_cnt is null then 0else user_last15hour_addcart_diff_item_cnt endas user_last15hour_addcart_diff_item_cnt,
case when user_last15hour_buy_diff_item_cnt is null then 0else user_last15hour_buy_diff_item_cnt endas user_last15hour_buy_diff_item_cnt,

case when user_last15hour_click_diff_category_cnt is null then 0else user_last15hour_click_diff_category_cnt endas user_last15hour_click_diff_category_cnt,
case when user_last15hour_bookmark_diff_category_cnt is null then 0else user_last15hour_bookmark_diff_category_cnt endas user_last15hour_bookmark_diff_category_cnt,
case when user_last15hour_addcart_diff_category_cnt is null then 0else user_last15hour_addcart_diff_category_cnt endas user_last15hour_addcart_diff_category_cnt,
case when user_last15hour_buy_diff_category_cnt is null then 0else user_last15hour_buy_diff_category_cnt endas user_last15hour_buy_diff_category_cnt,

-- 2021.06.21新增特征
case when user_last3day_mean_prior_click_next_buy_cnt is null then 0else user_last3day_mean_prior_click_next_buy_cnt endas user_last3day_mean_prior_click_next_buy_cnt,
case when user_last3day_mean_prior_bookmark_next_buy_cnt is null then 0else user_last3day_mean_prior_bookmark_next_buy_cnt endas user_last3day_mean_prior_bookmark_next_buy_cnt,
case when user_last3day_mean_prior_addcart_next_buy_cnt is null then 0else user_last3day_mean_prior_addcart_next_buy_cnt endas user_last3day_mean_prior_addcart_next_buy_cnt,
case when user_last3day_mean_prior_buy_next_buy_cnt is null then 0else user_last3day_mean_prior_buy_next_buy_cnt endas user_last3day_mean_prior_buy_next_buy_cnt,

case when user_last7day_mean_prior_click_next_buy_cnt is null then 0else user_last7day_mean_prior_click_next_buy_cnt endas user_last7day_mean_prior_click_next_buy_cnt,
case when user_last7day_mean_prior_bookmark_next_buy_cnt is null then 0else user_last7day_mean_prior_bookmark_next_buy_cnt endas user_last7day_mean_prior_bookmark_next_buy_cnt,
case when user_last7day_mean_prior_addcart_next_buy_cnt is null then 0else user_last7day_mean_prior_addcart_next_buy_cnt endas user_last7day_mean_prior_addcart_next_buy_cnt,
case when user_last7day_mean_prior_buy_next_buy_cnt is null then 0else user_last7day_mean_prior_buy_next_buy_cnt endas user_last7day_mean_prior_buy_next_buy_cnt,

case when user_hierarchy_behavior_rate is null then 0 else user_hierarchy_behavior_rate end as user_hierarchy_behavior_rate,
case when user_hierarchy_log_behavior_rate is null then 0 else user_hierarchy_log_behavior_rate end as user_hierarchy_log_behavior_rate,
case when user_active_rate is null then 0 else user_active_rate end as user_active_rate,

case when ui_last1day_click_cnt is NULL then 0 else ui_last1day_click_cnt end AS ui_last1day_click_cnt,
case when ui_last1day_bookmark_cnt is NULL then 0 else ui_last1day_bookmark_cnt end AS ui_last1day_bookmark_cnt,
case when ui_last1day_addcart_cnt is NULL then 0 else ui_last1day_addcart_cnt end AS ui_last1day_addcart_cnt,
case when ui_last1day_buy_cnt is NULL then 0 else ui_last1day_buy_cnt end AS ui_last1day_buy_cnt,

case when ui_last3day_click_cnt is NULL then 0 else ui_last3day_click_cnt end AS ui_last3day_click_cnt,
case when ui_last3day_bookmark_cnt is NULL then 0 else ui_last3day_bookmark_cnt end AS ui_last3day_bookmark_cnt,
case when ui_last3day_addcart_cnt is NULL then 0 else ui_last3day_addcart_cnt end AS ui_last3day_addcart_cnt,
case when ui_last3day_buy_cnt is NULL then 0 else ui_last3day_buy_cnt end AS ui_last3day_buy_cnt,

case when ui_last7day_click_cnt is NULL then 0 else ui_last7day_click_cnt end AS ui_last7day_click_cnt,
case when ui_last7day_bookmark_cnt is NULL then 0 else ui_last7day_bookmark_cnt end AS ui_last7day_bookmark_cnt,
case when ui_last7day_addcart_cnt is NULL then 0 else ui_last7day_addcart_cnt end AS ui_last7day_addcart_cnt,
case when ui_last7day_buy_cnt is NULL then 0 else ui_last7day_buy_cnt end AS ui_last7day_buy_cnt,

case when ui_last14day_click_cnt is NULL then 0 else ui_last14day_click_cnt end AS ui_last14day_click_cnt,
case when ui_last14day_bookmark_cnt is NULL then 0 else ui_last14day_bookmark_cnt end AS ui_last14day_bookmark_cnt,
case when ui_last14day_addcart_cnt is NULL then 0 else ui_last14day_addcart_cnt end AS ui_last14day_addcart_cnt,
case when ui_last14day_buy_cnt is NULL then 0 else ui_last14day_buy_cnt end AS ui_last14day_buy_cnt,

case when ui_last21day_click_cnt is NULL then 0 else ui_last21day_click_cnt end AS ui_last21day_click_cnt,
case when ui_last21day_bookmark_cnt is NULL then 0 else ui_last21day_bookmark_cnt end AS ui_last21day_bookmark_cnt,
case when ui_last21day_addcart_cnt is NULL then 0 else ui_last21day_addcart_cnt end AS ui_last21day_addcart_cnt,
case when ui_last21day_buy_cnt is NULL then 0 else ui_last21day_buy_cnt end AS ui_last21day_buy_cnt,

case when ui_last28day_click_cnt is NULL then 0 else ui_last28day_click_cnt end AS ui_last28day_click_cnt,
case when ui_last28day_bookmark_cnt is NULL then 0 else ui_last28day_bookmark_cnt end AS ui_last28day_bookmark_cnt,
case when ui_last28day_addcart_cnt is NULL then 0 else ui_last28day_addcart_cnt end AS ui_last28day_addcart_cnt,
case when ui_last28day_buy_cnt is NULL then 0 else ui_last28day_buy_cnt end AS ui_last28day_buy_cnt,

case when ui_lastday_click_hour_cnt is NULL then 0 else ui_lastday_click_hour_cnt end AS ui_lastday_click_hour_cnt,
case when ui_lastday_bookmark_hour_cnt is NULL then 0 else ui_lastday_bookmark_hour_cnt end AS ui_lastday_bookmark_hour_cnt,
case when ui_lastday_addcart_hour_cnt is NULL then 0 else ui_lastday_addcart_hour_cnt end AS ui_lastday_addcart_hour_cnt,
case when ui_lastday_buy_hour_cnt is NULL then 0 else ui_lastday_buy_hour_cnt end AS ui_lastday_buy_hour_cnt,
case when ui_lastday_behavior_hour_cnt is NULL then 0 else ui_lastday_behavior_hour_cnt end AS ui_lastday_behavior_hour_cnt,

case when uc_lastday_click_hour_cnt is NULL then 0 else uc_lastday_click_hour_cnt end AS uc_lastday_click_hour_cnt,
case when uc_lastday_bookmark_hour_cnt is NULL then 0 else uc_lastday_bookmark_hour_cnt end AS uc_lastday_bookmark_hour_cnt,
case when uc_lastday_addcart_hour_cnt is NULL then 0 else uc_lastday_addcart_hour_cnt end AS uc_lastday_addcart_hour_cnt,
case when uc_lastday_buy_hour_cnt is NULL then 0 else uc_lastday_buy_hour_cnt end AS uc_lastday_buy_hour_cnt,
case when uc_lastday_behavior_hour_cnt is NULL then 0 else uc_lastday_behavior_hour_cnt end AS uc_lastday_behavior_hour_cnt,

case when ui_last_click_day_dist is null then 28+1 else ui_last_click_day_dist end as ui_last_click_day_dist,
case when ui_last_bookmark_day_dist is null then 28+1 else ui_last_bookmark_day_dist end as ui_last_bookmark_day_dist,
case when ui_last_addcart_day_dist is null then 28+1 else ui_last_addcart_day_dist end as ui_last_addcart_day_dist,
case when ui_last_buy_day_dist is null then 28+1 else ui_last_buy_day_dist end as ui_last_buy_day_dist,
case when ui_last_behavior_day_dist is null then 28+1 else ui_last_behavior_day_dist end as ui_last_behavior_day_dist,

case when ui_first_click_day_dist is null then 28+1 else ui_first_click_day_dist end as ui_first_click_day_dist,
case when ui_first_bookmark_day_dist is null then 28+1 else ui_first_bookmark_day_dist end as ui_first_bookmark_day_dist,
case when ui_first_addcart_day_dist is null then 28+1 else ui_first_addcart_day_dist end as ui_first_addcart_day_dist,
case when ui_first_buy_day_dist is null then 28+1 else ui_first_buy_day_dist end as ui_first_buy_day_dist,
case when ui_first_behavior_day_dist is null then 28+1 else ui_first_behavior_day_dist end as ui_first_behavior_day_dist,

case when ui_last_click_hour_dist is null then 24*(28+1) else ui_last_click_hour_dist end as ui_last_click_hour_dist,
case when ui_last_bookmark_hour_dist is null then 24*(28+1) else ui_last_bookmark_hour_dist end as ui_last_bookmark_hour_dist,
case when ui_last_addcart_hour_dist is null then 24*(28+1) else ui_last_addcart_hour_dist end as ui_last_addcart_hour_dist,
case when ui_last_buy_hour_dist is null then 24*(28+1) else ui_last_buy_hour_dist end as ui_last_buy_hour_dist,
case when ui_last_behavior_hour_dist is null then 24*(28+1) else ui_last_behavior_hour_dist end as ui_last_behavior_hour_dist,

case when ui_first_click_hour_dist is null then 24*(28+1) else ui_first_click_hour_dist end as ui_first_click_hour_dist,
case when ui_first_bookmark_hour_dist is null then 24*(28+1) else ui_first_bookmark_hour_dist end as ui_first_bookmark_hour_dist,
case when ui_first_addcart_hour_dist is null then 24*(28+1) else ui_first_addcart_hour_dist end as ui_first_addcart_hour_dist,
case when ui_first_buy_hour_dist is null then 24*(28+1) else ui_first_buy_hour_dist end as ui_first_buy_hour_dist,
case when ui_first_behavior_hour_dist is null then 24*(28+1) else ui_first_behavior_hour_dist end as ui_first_behavior_hour_dist,

case when ui_each_buy_avg_day_dist is null then 28+1 else ui_each_buy_avg_day_dist end as ui_each_buy_avg_day_dist,
case when ui_each_buy_stddev_day_dist is null then 28+1 else ui_each_buy_stddev_day_dist end as ui_each_buy_stddev_day_dist,

---- 2021.06.07 新增特征
case when ui_ever_buy_flag is null then 0 else ui_ever_buy_flag end as ui_ever_buy_flag,
case when ui_lastday_most_important_behavior_type is null then 0 else ui_lastday_most_important_behavior_type end as ui_lastday_most_important_behavior_type,

-- 2021.06.08 新增特征
case when ui_last1day_category_click_cnt is null then 0 else ui_last1day_category_click_cnt end as ui_last1day_category_click_cnt,
case when ui_last1day_category_bookmark_cnt is null then 0 else ui_last1day_category_bookmark_cnt end as ui_last1day_category_bookmark_cnt,
case when ui_last1day_category_addcart_cnt is null then 0 else ui_last1day_category_addcart_cnt end as ui_last1day_category_addcart_cnt,
case when ui_last1day_category_buy_cnt is null then 0 else ui_last1day_category_buy_cnt end as ui_last1day_category_buy_cnt,

case when ui_last3day_category_click_cnt is null then 0 else ui_last3day_category_click_cnt end as ui_last3day_category_click_cnt,
case when ui_last3day_category_bookmark_cnt is null then 0 else ui_last3day_category_bookmark_cnt end as ui_last3day_category_bookmark_cnt,
case when ui_last3day_category_addcart_cnt is null then 0 else ui_last3day_category_addcart_cnt end as ui_last3day_category_addcart_cnt,
case when ui_last3day_category_buy_cnt is null then 0 else ui_last3day_category_buy_cnt end as ui_last3day_category_buy_cnt,

case when ui_last7day_category_click_cnt is null then 0 else ui_last7day_category_click_cnt end as ui_last7day_category_click_cnt,
case when ui_last7day_category_bookmark_cnt is null then 0 else ui_last7day_category_bookmark_cnt end as ui_last7day_category_bookmark_cnt,
case when ui_last7day_category_addcart_cnt is null then 0 else ui_last7day_category_addcart_cnt end as ui_last7day_category_addcart_cnt,
case when ui_last7day_category_buy_cnt is null then 0 else ui_last7day_category_buy_cnt end as ui_last7day_category_buy_cnt,

case when ui_last14day_category_click_cnt is null then 0 else ui_last14day_category_click_cnt end as ui_last14day_category_click_cnt,
case when ui_last14day_category_bookmark_cnt is null then 0 else ui_last14day_category_bookmark_cnt end as ui_last14day_category_bookmark_cnt,
case when ui_last14day_category_addcart_cnt is null then 0 else ui_last14day_category_addcart_cnt end as ui_last14day_category_addcart_cnt,
case when ui_last14day_category_buy_cnt is null then 0 else ui_last14day_category_buy_cnt end as ui_last14day_category_buy_cnt,

case when ui_last21day_category_click_cnt is null then 0 else ui_last21day_category_click_cnt end as ui_last21day_category_click_cnt,
case when ui_last21day_category_bookmark_cnt is null then 0 else ui_last21day_category_bookmark_cnt end as ui_last21day_category_bookmark_cnt,
case when ui_last21day_category_addcart_cnt is null then 0 else ui_last21day_category_addcart_cnt end as ui_last21day_category_addcart_cnt,
case when ui_last21day_category_buy_cnt is null then 0 else ui_last21day_category_buy_cnt end as ui_last21day_category_buy_cnt,

case when ui_last28day_category_click_cnt is null then 0 else ui_last28day_category_click_cnt end as ui_last28day_category_click_cnt,
case when ui_last28day_category_bookmark_cnt is null then 0 else ui_last28day_category_bookmark_cnt end as ui_last28day_category_bookmark_cnt,
case when ui_last28day_category_addcart_cnt is null then 0 else ui_last28day_category_addcart_cnt end as ui_last28day_category_addcart_cnt,
case when ui_last28day_category_buy_cnt is null then 0 else ui_last28day_category_buy_cnt end as ui_last28day_category_buy_cnt,

case when ui_diff_click_day_cnt is null then 0 else ui_diff_click_day_cnt end as ui_diff_click_day_cnt,
case when ui_diff_bookmark_day_cnt is null then 0 else ui_diff_bookmark_day_cnt end as ui_diff_bookmark_day_cnt,
case when ui_diff_addcart_day_cnt is null then 0 else ui_diff_addcart_day_cnt end as ui_diff_addcart_day_cnt,
case when ui_diff_buy_day_cnt is null then 0 else ui_diff_buy_day_cnt end as ui_diff_buy_day_cnt,
case when ui_diff_behavior_day_cnt is null then 0 else ui_diff_behavior_day_cnt end as ui_diff_behavior_day_cnt,

case when uc_diff_click_day_cnt is null then 0 else uc_diff_click_day_cnt end as uc_diff_click_day_cnt,
case when uc_diff_bookmark_day_cnt is null then 0 else uc_diff_bookmark_day_cnt end as uc_diff_bookmark_day_cnt,
case when uc_diff_addcart_day_cnt is null then 0 else uc_diff_addcart_day_cnt end as uc_diff_addcart_day_cnt,
case when uc_diff_buy_day_cnt is null then 0 else uc_diff_buy_day_cnt end as uc_diff_buy_day_cnt,
case when uc_diff_behavior_day_cnt is null then 0 else uc_diff_behavior_day_cnt end as uc_diff_behavior_day_cnt

FROM
(
SELECT in_t1.user_id,in_t1.item_id,in_t1.item_category
FROM
t_dh_online_train_base_ui in_t1
LEFT OUTER JOIN
(
SELECT user_id FROM t_dh_filter_user_list
)in_t2
ON in_t1.user_id = in_t2.user_id
LEFT OUTER JOIN
(
SELECT item_id FROM t_dh_filter_item_list
)in_t3
ON in_t1.item_id = in_t3.item_id
WHERE
in_t2.user_id is null and in_t3.item_id is null
)t1
LEFT OUTER JOIN
(
SELECT user_id,item_id, 1 as buy_label FROM t_dh_user_actions_subset
WHERE behavior_type = 4 AND day_index_num = 29+1
GROUP BY user_id,item_id
)t2

ON t1.user_id = t2.user_id AND t1.item_id = t2.item_id
LEFT OUTER JOIN
t_dh_online_train_item_feature t3
ON t1.item_id = t3.item_id

LEFT OUTER JOIN
t_dh_online_train_user_feature t4
ON t1.user_id = t4.user_id

LEFT OUTER JOIN
t_dh_online_train_ui_feature t5
ON t1.user_id = t5.user_id AND t1.item_id = t5.item_id

)t
)out_t
;

總結

以上是生活随笔為你收集整理的【天池竞赛系列】阿里移动推荐算法思路解析的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

日本精品高清一区二区 | 亚洲成av人片天堂网无码】 | 青草视频在线播放 | 奇米综合四色77777久久 东京无码熟妇人妻av在线网址 | 国产午夜亚洲精品不卡 | 99精品视频在线观看免费 | 天下第一社区视频www日本 | 精品少妇爆乳无码av无码专区 | 99精品视频在线观看免费 | 高清无码午夜福利视频 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 亚洲成a人片在线观看无码3d | 精品成在人线av无码免费看 | 国产在热线精品视频 | 99久久无码一区人妻 | 国产精品久免费的黄网站 | 少妇激情av一区二区 | 亚洲国产精品无码久久久久高潮 | 18禁止看的免费污网站 | 夜先锋av资源网站 | 特大黑人娇小亚洲女 | 免费看男女做好爽好硬视频 | 波多野结衣一区二区三区av免费 | av无码不卡在线观看免费 | 中文字幕日韩精品一区二区三区 | 夜夜影院未满十八勿进 | 国产精品美女久久久久av爽李琼 | 欧美人与物videos另类 | 日产精品高潮呻吟av久久 | 久久99国产综合精品 | 性色欲网站人妻丰满中文久久不卡 | 国产电影无码午夜在线播放 | 亚洲欧洲日本综合aⅴ在线 | 色综合视频一区二区三区 | 麻豆国产丝袜白领秘书在线观看 | 欧洲美熟女乱又伦 | 秋霞成人午夜鲁丝一区二区三区 | 婷婷六月久久综合丁香 | 亚洲爆乳无码专区 | 老头边吃奶边弄进去呻吟 | 精品人妻人人做人人爽夜夜爽 | 久久国产精品_国产精品 | 日日摸日日碰夜夜爽av | 精品国产一区二区三区av 性色 | 国产超碰人人爽人人做人人添 | 日本精品高清一区二区 | 丰满岳乱妇在线观看中字无码 | 欧美熟妇另类久久久久久不卡 | 内射白嫩少妇超碰 | 女人被爽到呻吟gif动态图视看 | аⅴ资源天堂资源库在线 | 无码av中文字幕免费放 | 亚洲呦女专区 | 欧美老人巨大xxxx做受 | 久久久久人妻一区精品色欧美 | 国产又爽又猛又粗的视频a片 | 免费网站看v片在线18禁无码 | 日本高清一区免费中文视频 | 日日麻批免费40分钟无码 | 麻豆果冻传媒2021精品传媒一区下载 | 精品国产av色一区二区深夜久久 | 一本加勒比波多野结衣 | 草草网站影院白丝内射 | 兔费看少妇性l交大片免费 | 久久无码专区国产精品s | 高潮毛片无遮挡高清免费 | 中文字幕色婷婷在线视频 | 久久久久se色偷偷亚洲精品av | 国产九九九九九九九a片 | 麻豆果冻传媒2021精品传媒一区下载 | 伊人久久大香线焦av综合影院 | 爆乳一区二区三区无码 | 精品国产精品久久一区免费式 | 乱人伦人妻中文字幕无码 | 亚洲精品国产第一综合99久久 | 欧美日韩人成综合在线播放 | 亚洲 欧美 激情 小说 另类 | 九九热爱视频精品 | 亚洲精品中文字幕 | 国产精品二区一区二区aⅴ污介绍 | 未满小14洗澡无码视频网站 | 亚洲春色在线视频 | 久久国语露脸国产精品电影 | 成年女人永久免费看片 | 中文字幕乱码人妻二区三区 | 色窝窝无码一区二区三区色欲 | 天堂无码人妻精品一区二区三区 | 国产免费久久久久久无码 | 无码国模国产在线观看 | 久久久久久久女国产乱让韩 | 日产精品99久久久久久 | 久久精品丝袜高跟鞋 | 久激情内射婷内射蜜桃人妖 | 人人妻在人人 | 日韩精品无码免费一区二区三区 | 漂亮人妻洗澡被公强 日日躁 | 国产精品丝袜黑色高跟鞋 | 国精品人妻无码一区二区三区蜜柚 | 大肉大捧一进一出好爽视频 | 久久久亚洲欧洲日产国码αv | 小sao货水好多真紧h无码视频 | 国产亚洲日韩欧美另类第八页 | 一区二区三区高清视频一 | 水蜜桃亚洲一二三四在线 | 在线 国产 欧美 亚洲 天堂 | 色婷婷久久一区二区三区麻豆 | 最新国产乱人伦偷精品免费网站 | 中文字幕无线码免费人妻 | 大肉大捧一进一出好爽视频 | 欧美熟妇另类久久久久久不卡 | 久9re热视频这里只有精品 | 国产成人综合在线女婷五月99播放 | 色一情一乱一伦一视频免费看 | 亚洲国产精品成人久久蜜臀 | 国产精品无码永久免费888 | 4hu四虎永久在线观看 | 欧美肥老太牲交大战 | 亚洲天堂2017无码 | 色情久久久av熟女人妻网站 | 精品熟女少妇av免费观看 | 人妻插b视频一区二区三区 | 日产精品高潮呻吟av久久 | 午夜男女很黄的视频 | 精品人妻人人做人人爽 | 白嫩日本少妇做爰 | 久久久久久久女国产乱让韩 | 国产精品久久久久7777 | 永久免费精品精品永久-夜色 | 性色欲网站人妻丰满中文久久不卡 | 在线欧美精品一区二区三区 | 国产成人无码av片在线观看不卡 | 国产精品久久久午夜夜伦鲁鲁 | 国产真实伦对白全集 | 日日躁夜夜躁狠狠躁 | 伊人久久大香线蕉午夜 | 精品日本一区二区三区在线观看 | 大地资源网第二页免费观看 | 老司机亚洲精品影院 | 日本熟妇人妻xxxxx人hd | 久久久国产一区二区三区 | 伊人久久大香线蕉av一区二区 | 午夜精品久久久久久久久 | 国产精品香蕉在线观看 | 久久精品国产亚洲精品 | 亚洲 欧美 激情 小说 另类 | 沈阳熟女露脸对白视频 | 色狠狠av一区二区三区 | 人人妻人人澡人人爽欧美一区九九 | 成熟女人特级毛片www免费 | 国产农村妇女aaaaa视频 撕开奶罩揉吮奶头视频 | 帮老师解开蕾丝奶罩吸乳网站 | 欧美老人巨大xxxx做受 | 亚洲国产精品成人久久蜜臀 | 国产真人无遮挡作爱免费视频 | 人人爽人人澡人人人妻 | 黄网在线观看免费网站 | 国产成人精品视频ⅴa片软件竹菊 | 亚拍精品一区二区三区探花 | 免费人成在线观看网站 | 亚洲色成人中文字幕网站 | 色窝窝无码一区二区三区色欲 | av香港经典三级级 在线 | 国产精品高潮呻吟av久久 | 女人被男人爽到呻吟的视频 | 鲁鲁鲁爽爽爽在线视频观看 | 国产精品久久久午夜夜伦鲁鲁 | 国产精品无套呻吟在线 | 久久人人爽人人爽人人片ⅴ | 久久亚洲中文字幕无码 | 国产亚洲精品久久久久久久 | 成人无码视频在线观看网站 | 九九在线中文字幕无码 | 97精品国产97久久久久久免费 | 熟妇女人妻丰满少妇中文字幕 | 欧美人与禽zoz0性伦交 | 亚洲成a人片在线观看无码3d | 丰满少妇弄高潮了www | 99久久无码一区人妻 | 亚洲高清偷拍一区二区三区 | 亚洲va欧美va天堂v国产综合 | 亚洲综合精品香蕉久久网 | 又紧又大又爽精品一区二区 | 丰满护士巨好爽好大乳 | 99视频精品全部免费免费观看 | 免费人成网站视频在线观看 | av人摸人人人澡人人超碰下载 | 色综合久久网 | 熟女少妇人妻中文字幕 | 又大又硬又黄的免费视频 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 嫩b人妻精品一区二区三区 | 亚洲性无码av中文字幕 | 在线精品国产一区二区三区 | 精品欧美一区二区三区久久久 | 女人被男人爽到呻吟的视频 | 精品夜夜澡人妻无码av蜜桃 | 亚洲综合另类小说色区 | 国产精华av午夜在线观看 | 久久亚洲中文字幕精品一区 | 成人无码精品1区2区3区免费看 | 国产人成高清在线视频99最全资源 | 四虎国产精品一区二区 | 日韩精品无码一本二本三本色 | 日产精品99久久久久久 | 日日碰狠狠躁久久躁蜜桃 | 欧美兽交xxxx×视频 | 日韩亚洲欧美中文高清在线 | 久久精品国产日本波多野结衣 | 久久久久99精品成人片 | 成人精品视频一区二区 | 亚洲天堂2017无码中文 | 精品人人妻人人澡人人爽人人 | 午夜无码人妻av大片色欲 | 婷婷五月综合激情中文字幕 | 成熟女人特级毛片www免费 | 久久精品视频在线看15 | 少妇愉情理伦片bd | 久久国产自偷自偷免费一区调 | 国产午夜福利亚洲第一 | 精品乱子伦一区二区三区 | 红桃av一区二区三区在线无码av | 国产亲子乱弄免费视频 | 野狼第一精品社区 | 亚洲小说春色综合另类 | 国产精品美女久久久 | 人妻无码αv中文字幕久久琪琪布 | 蜜桃视频插满18在线观看 | 学生妹亚洲一区二区 | 一区二区三区高清视频一 | 无码国模国产在线观看 | 国产精品永久免费视频 | 女人和拘做爰正片视频 | 18黄暴禁片在线观看 | 中文字幕无码日韩专区 | 激情人妻另类人妻伦 | 国产 精品 自在自线 | 国产一区二区三区精品视频 | 国产免费久久精品国产传媒 | 亚洲男女内射在线播放 | 鲁鲁鲁爽爽爽在线视频观看 | 午夜无码区在线观看 | 搡女人真爽免费视频大全 | 亚洲 高清 成人 动漫 | 亚洲区欧美区综合区自拍区 | 欧美丰满熟妇xxxx | 精品aⅴ一区二区三区 | 国产激情无码一区二区app | 98国产精品综合一区二区三区 | 老熟女重囗味hdxx69 | 国产真人无遮挡作爱免费视频 | 久久久国产一区二区三区 | 中文字幕无码人妻少妇免费 | 亚洲国产成人a精品不卡在线 | 国产成人无码av片在线观看不卡 | 国产精品久久久av久久久 | 国产精品人人妻人人爽 | 无码乱肉视频免费大全合集 | 亚洲乱码中文字幕在线 | 又色又爽又黄的美女裸体网站 | 久久久精品456亚洲影院 | 无遮无挡爽爽免费视频 | 国产国语老龄妇女a片 | 国产超碰人人爽人人做人人添 | 国精品人妻无码一区二区三区蜜柚 | 国产av一区二区三区最新精品 | 清纯唯美经典一区二区 | 少女韩国电视剧在线观看完整 | 377p欧洲日本亚洲大胆 | 熟妇女人妻丰满少妇中文字幕 | 精品乱子伦一区二区三区 | 久久久中文字幕日本无吗 | 午夜福利不卡在线视频 | 国产午夜无码视频在线观看 | 国产黑色丝袜在线播放 | 人妻尝试又大又粗久久 | 在线视频网站www色 | 无码av中文字幕免费放 | 久久久久国色av免费观看性色 | 一本久道久久综合婷婷五月 | 无码吃奶揉捏奶头高潮视频 | 美女极度色诱视频国产 | 亚洲人成网站免费播放 | 中文无码精品a∨在线观看不卡 | 亚洲精品欧美二区三区中文字幕 | 丰满人妻翻云覆雨呻吟视频 | 成人免费视频视频在线观看 免费 | 蜜桃av抽搐高潮一区二区 | 捆绑白丝粉色jk震动捧喷白浆 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 欧美日韩色另类综合 | 男女超爽视频免费播放 | 国产免费无码一区二区视频 | 成 人 网 站国产免费观看 | 欧洲精品码一区二区三区免费看 | 国产热a欧美热a在线视频 | 亚洲精品国产a久久久久久 | 免费人成在线观看网站 | 国产精品人人爽人人做我的可爱 | 色一情一乱一伦一区二区三欧美 | 亚洲精品一区二区三区婷婷月 | 无码av最新清无码专区吞精 | 麻豆国产丝袜白领秘书在线观看 | 女人被男人爽到呻吟的视频 | 我要看www免费看插插视频 | 亚洲码国产精品高潮在线 | 亚洲国产精品久久久天堂 | 亚洲欧洲日本综合aⅴ在线 | 2019午夜福利不卡片在线 | 国产肉丝袜在线观看 | 日韩欧美群交p片內射中文 | 人人妻人人澡人人爽精品欧美 | 人妻插b视频一区二区三区 | 亚洲啪av永久无码精品放毛片 | 青春草在线视频免费观看 | 色老头在线一区二区三区 | 亚洲中文字幕在线观看 | 久久国产自偷自偷免费一区调 | 精品厕所偷拍各类美女tp嘘嘘 | 3d动漫精品啪啪一区二区中 | 亚洲精品一区二区三区四区五区 | 美女毛片一区二区三区四区 | 成 人 网 站国产免费观看 | 亚洲中文字幕乱码av波多ji | 在线观看国产午夜福利片 | 最近免费中文字幕中文高清百度 | 亚洲国产成人av在线观看 | 亚洲精品午夜国产va久久成人 | 综合网日日天干夜夜久久 | 成人精品视频一区二区 | 国产精品成人av在线观看 | 无码av岛国片在线播放 | 久久亚洲中文字幕无码 | 奇米影视7777久久精品 | 无遮挡国产高潮视频免费观看 | www成人国产高清内射 | 日日夜夜撸啊撸 | 精品成在人线av无码免费看 | 国产免费无码一区二区视频 | 国产精品久免费的黄网站 | 欧美日韩久久久精品a片 | 国产女主播喷水视频在线观看 | 欧美日本免费一区二区三区 | 无码av中文字幕免费放 | 永久免费观看国产裸体美女 | 成年女人永久免费看片 | 无遮挡国产高潮视频免费观看 | 亚洲日本一区二区三区在线 | 樱花草在线社区www | 日韩人妻无码中文字幕视频 | 久久久久久a亚洲欧洲av冫 | 国产亚洲视频中文字幕97精品 | 少妇性l交大片欧洲热妇乱xxx | 日韩成人一区二区三区在线观看 | 日日噜噜噜噜夜夜爽亚洲精品 | 人妻尝试又大又粗久久 | 国产亚洲精品久久久ai换 | 欧美人妻一区二区三区 | 久久国产精品萌白酱免费 | 日日麻批免费40分钟无码 | 色综合久久久无码网中文 | 内射爽无广熟女亚洲 | 日日干夜夜干 | 亚洲中文字幕无码中文字在线 | 欧美怡红院免费全部视频 | 又紧又大又爽精品一区二区 | 人人妻人人澡人人爽欧美精品 | 久久综合香蕉国产蜜臀av | 国产情侣作爱视频免费观看 | 国产肉丝袜在线观看 | 67194成是人免费无码 | 日本爽爽爽爽爽爽在线观看免 | 国产无套粉嫩白浆在线 | 国产农村妇女高潮大叫 | 日本乱偷人妻中文字幕 | 亚洲综合另类小说色区 | √天堂资源地址中文在线 | 国产女主播喷水视频在线观看 | 无码av岛国片在线播放 | 国产精品久久久久无码av色戒 | 人妻人人添人妻人人爱 | 亚洲精品国产精品乱码不卡 | 国产明星裸体无码xxxx视频 | 午夜无码人妻av大片色欲 | 撕开奶罩揉吮奶头视频 | 亚洲成熟女人毛毛耸耸多 | 给我免费的视频在线观看 | 伊在人天堂亚洲香蕉精品区 | 无码纯肉视频在线观看 | 亚洲欧美精品aaaaaa片 | 好屌草这里只有精品 | 亚洲国产综合无码一区 | 欧美老人巨大xxxx做受 | 亚洲 激情 小说 另类 欧美 | 久久国产劲爆∧v内射 | 成人试看120秒体验区 | 久久99精品久久久久久动态图 | 亚洲a无码综合a国产av中文 | 中文亚洲成a人片在线观看 | 成人无码精品1区2区3区免费看 | 丝袜 中出 制服 人妻 美腿 | 日韩视频 中文字幕 视频一区 | 亚洲区小说区激情区图片区 | 性做久久久久久久免费看 | 午夜福利试看120秒体验区 | 色欲综合久久中文字幕网 | 午夜性刺激在线视频免费 | 久久精品中文字幕大胸 | 日欧一片内射va在线影院 | 天天拍夜夜添久久精品 | 久久精品国产99久久6动漫 | 人人妻人人藻人人爽欧美一区 | 日本护士xxxxhd少妇 | 1000部夫妻午夜免费 | 熟妇人妻无乱码中文字幕 | 免费无码肉片在线观看 | 国产疯狂伦交大片 | 日欧一片内射va在线影院 | 国产亚洲人成在线播放 | 在线а√天堂中文官网 | 日本大乳高潮视频在线观看 | 久久精品人妻少妇一区二区三区 | 中文无码成人免费视频在线观看 | 亚洲а∨天堂久久精品2021 | 牛和人交xxxx欧美 | 无码av免费一区二区三区试看 | 色综合天天综合狠狠爱 | 久久天天躁狠狠躁夜夜免费观看 | 性生交大片免费看女人按摩摩 | 国内少妇偷人精品视频免费 | 亚洲va欧美va天堂v国产综合 | 在线观看国产一区二区三区 | 亚洲天堂2017无码中文 | 久久精品中文字幕一区 | 无码毛片视频一区二区本码 | 国内揄拍国内精品人妻 | 欧美熟妇另类久久久久久多毛 | 国产三级久久久精品麻豆三级 | 性欧美牲交xxxxx视频 | 久久久成人毛片无码 | 国产偷国产偷精品高清尤物 | 精品少妇爆乳无码av无码专区 | 国产无遮挡又黄又爽免费视频 | 成人aaa片一区国产精品 | 一本一道久久综合久久 | 日韩欧美成人免费观看 | 午夜精品一区二区三区在线观看 | 国色天香社区在线视频 | 中文字幕日产无线码一区 | 夜精品a片一区二区三区无码白浆 | 亚洲爆乳无码专区 | 国产成人人人97超碰超爽8 | 99久久久国产精品无码免费 | 狠狠色欧美亚洲狠狠色www | 四虎影视成人永久免费观看视频 | 无码吃奶揉捏奶头高潮视频 | 免费无码一区二区三区蜜桃大 | 黑森林福利视频导航 | 在教室伦流澡到高潮hnp视频 | 中文字幕av无码一区二区三区电影 | 成人欧美一区二区三区黑人免费 | 中文字幕无码日韩欧毛 | 国产99久久精品一区二区 | 精品亚洲韩国一区二区三区 | 黑人巨大精品欧美黑寡妇 | 亚洲成a人片在线观看日本 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 成 人影片 免费观看 | 99久久人妻精品免费一区 | 日韩人妻少妇一区二区三区 | 鲁大师影院在线观看 | 亚洲天堂2017无码中文 | 国产一区二区不卡老阿姨 | 中文字幕乱码人妻二区三区 | 精品无人区无码乱码毛片国产 | 女高中生第一次破苞av | 强伦人妻一区二区三区视频18 | 亚洲国产一区二区三区在线观看 | 性生交大片免费看l | 无套内谢的新婚少妇国语播放 | 老司机亚洲精品影院无码 | 久久亚洲精品成人无码 | 欧美大屁股xxxxhd黑色 | 人妻与老人中文字幕 | 久久99精品国产麻豆蜜芽 | 婷婷六月久久综合丁香 | 日本精品少妇一区二区三区 | 日本丰满护士爆乳xxxx | 欧洲欧美人成视频在线 | 中文字幕乱妇无码av在线 | 亚洲中文字幕va福利 | 国产人妻人伦精品1国产丝袜 | 欧美日韩一区二区免费视频 | 亚洲乱码国产乱码精品精 | 欧美三级a做爰在线观看 | 久久国产精品_国产精品 | 亚洲中文字幕久久无码 | 久久久久久久久888 | 国产成人精品视频ⅴa片软件竹菊 | 4hu四虎永久在线观看 | 黑人巨大精品欧美一区二区 | 午夜无码人妻av大片色欲 | 性色欲情网站iwww九文堂 | 国产精品无码一区二区三区不卡 | 亚洲成色www久久网站 | 久在线观看福利视频 | 九月婷婷人人澡人人添人人爽 | 伦伦影院午夜理论片 | 麻豆md0077饥渴少妇 | 国产高清av在线播放 | 欧美成人午夜精品久久久 | 亚洲码国产精品高潮在线 | 成人无码精品一区二区三区 | 中文字幕无码免费久久9一区9 | 噜噜噜亚洲色成人网站 | aⅴ在线视频男人的天堂 | 亚洲欧美中文字幕5发布 | 76少妇精品导航 | 亚洲成在人网站无码天堂 | 国产成人无码区免费内射一片色欲 | 国产农村乱对白刺激视频 | 成人无码视频在线观看网站 | 国产精品国产自线拍免费软件 | 日日摸夜夜摸狠狠摸婷婷 | 奇米影视7777久久精品人人爽 | 无码吃奶揉捏奶头高潮视频 | 在线天堂新版最新版在线8 | 国精品人妻无码一区二区三区蜜柚 | 中文字幕av无码一区二区三区电影 | 爆乳一区二区三区无码 | 亚洲爆乳大丰满无码专区 | 中文字幕av无码一区二区三区电影 | 亚洲一区二区三区含羞草 | 欧美国产日产一区二区 | 欧美freesex黑人又粗又大 | 亚洲另类伦春色综合小说 | 日本xxxx色视频在线观看免费 | 人人超人人超碰超国产 | 巨爆乳无码视频在线观看 | 无码av最新清无码专区吞精 | 麻豆人妻少妇精品无码专区 | 日本肉体xxxx裸交 | 天天av天天av天天透 | 国产成人无码一二三区视频 | 人妻无码αv中文字幕久久琪琪布 | 又色又爽又黄的美女裸体网站 | 中文字幕乱码亚洲无线三区 | 精品无码av一区二区三区 | 曰韩无码二三区中文字幕 | 日韩欧美群交p片內射中文 | 国产色视频一区二区三区 | 精品欧洲av无码一区二区三区 | 无遮挡国产高潮视频免费观看 | 漂亮人妻洗澡被公强 日日躁 | 中国大陆精品视频xxxx | 日本va欧美va欧美va精品 | 亚洲精品成人av在线 | 亚洲精品成人福利网站 | 免费无码肉片在线观看 | 国产又粗又硬又大爽黄老大爷视 | 三上悠亚人妻中文字幕在线 | 亚洲成色在线综合网站 | 无码纯肉视频在线观看 | 日本精品少妇一区二区三区 | 国产97色在线 | 免 | 国产精品人人爽人人做我的可爱 | 国产成人无码午夜视频在线观看 | 日本一卡二卡不卡视频查询 | 疯狂三人交性欧美 | 亚洲熟妇色xxxxx亚洲 | 男女性色大片免费网站 | 国产精品资源一区二区 | 中文亚洲成a人片在线观看 | 久久久久免费精品国产 | 日本一区二区三区免费高清 | 狠狠色噜噜狠狠狠7777奇米 | 国产色xx群视频射精 | 又大又黄又粗又爽的免费视频 | 亚洲小说图区综合在线 | aⅴ亚洲 日韩 色 图网站 播放 | 国产性生大片免费观看性 | 色 综合 欧美 亚洲 国产 | 中文字幕av无码一区二区三区电影 | 四虎永久在线精品免费网址 | 欧美熟妇另类久久久久久多毛 | 成人无码精品一区二区三区 | 久久久婷婷五月亚洲97号色 | 欧美熟妇另类久久久久久不卡 | 久久精品无码一区二区三区 | 欧美人妻一区二区三区 | 中文字幕人妻丝袜二区 | www国产亚洲精品久久网站 | 中文字幕av伊人av无码av | √天堂中文官网8在线 | 欧美兽交xxxx×视频 | 亚洲一区二区三区在线观看网站 | 精品国产精品久久一区免费式 | 亚洲无人区午夜福利码高清完整版 | 日日噜噜噜噜夜夜爽亚洲精品 | 国内精品久久久久久中文字幕 | 国产成人综合色在线观看网站 | 国产精华av午夜在线观看 | 98国产精品综合一区二区三区 | 亚无码乱人伦一区二区 | 免费国产黄网站在线观看 | 少妇人妻大乳在线视频 | 亚洲熟悉妇女xxx妇女av | 国产成人精品视频ⅴa片软件竹菊 | 久久综合香蕉国产蜜臀av | 在线看片无码永久免费视频 | 人妻无码久久精品人妻 | 亚洲乱码中文字幕在线 | 男女爱爱好爽视频免费看 | 中文字幕+乱码+中文字幕一区 | 欧美乱妇无乱码大黄a片 | 国产免费观看黄av片 | 亚洲日韩乱码中文无码蜜桃臀网站 | 欧美日韩色另类综合 | 人妻有码中文字幕在线 | 高潮喷水的毛片 | 国产在线aaa片一区二区99 | 蜜臀av在线播放 久久综合激激的五月天 | 人妻熟女一区 | 日本www一道久久久免费榴莲 | 99视频精品全部免费免费观看 | 国产精品人妻一区二区三区四 | 亚洲va欧美va天堂v国产综合 | 性欧美熟妇videofreesex | 国内精品久久毛片一区二区 | 久久zyz资源站无码中文动漫 | 狂野欧美性猛交免费视频 | 少女韩国电视剧在线观看完整 | 日韩av无码中文无码电影 | 亚洲国产精品久久久久久 | 欧美丰满老熟妇xxxxx性 | 久久久精品国产sm最大网站 | 天天摸天天透天天添 | 又大又硬又爽免费视频 | 久久精品国产日本波多野结衣 | 狠狠色欧美亚洲狠狠色www | 强辱丰满人妻hd中文字幕 | 无码纯肉视频在线观看 | 国产精品a成v人在线播放 | a片免费视频在线观看 | 日本丰满护士爆乳xxxx | 亚洲精品鲁一鲁一区二区三区 | 四虎国产精品一区二区 | 亚洲国产高清在线观看视频 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲中文字幕在线无码一区二区 | 少妇激情av一区二区 | 国产乱人伦av在线无码 | 国产精品久久久久9999小说 | 午夜福利电影 | 人妻少妇精品视频专区 | 网友自拍区视频精品 | 亚洲精品一区二区三区大桥未久 | 精品人妻人人做人人爽 | 欧美熟妇另类久久久久久多毛 | 婷婷丁香五月天综合东京热 | av无码电影一区二区三区 | 亚洲日韩一区二区三区 | www国产亚洲精品久久网站 | 国产精品亚洲一区二区三区喷水 | 国产精品高潮呻吟av久久 | 无码成人精品区在线观看 | 精品久久久久久人妻无码中文字幕 | 亚洲自偷自拍另类第1页 | 亚拍精品一区二区三区探花 | 精品久久综合1区2区3区激情 | 帮老师解开蕾丝奶罩吸乳网站 | 国产成人亚洲综合无码 | 精品久久久无码人妻字幂 | 精品水蜜桃久久久久久久 | 精品熟女少妇av免费观看 | 国语自产偷拍精品视频偷 | 2020最新国产自产精品 | 国产精品久久久久无码av色戒 | 午夜肉伦伦影院 | 给我免费的视频在线观看 | 特大黑人娇小亚洲女 | 国产97在线 | 亚洲 | 精品国产精品久久一区免费式 | 十八禁视频网站在线观看 | 色五月丁香五月综合五月 | 麻豆国产人妻欲求不满谁演的 | 久精品国产欧美亚洲色aⅴ大片 | 夜夜夜高潮夜夜爽夜夜爰爰 | 成人免费视频在线观看 | 亚洲欧洲无卡二区视頻 | 狂野欧美性猛xxxx乱大交 | 国产乱人伦偷精品视频 | 久久99精品久久久久婷婷 | 亚洲一区二区三区在线观看网站 | 无码国产色欲xxxxx视频 | 999久久久国产精品消防器材 | 国产做国产爱免费视频 | 少妇人妻av毛片在线看 | 欧美日韩人成综合在线播放 | 亚洲色偷偷偷综合网 | 性欧美熟妇videofreesex | 十八禁视频网站在线观看 | 国产精品99爱免费视频 | 中文字幕无码日韩欧毛 | 久久伊人色av天堂九九小黄鸭 | 国产成人无码专区 | 欧美性生交xxxxx久久久 | 性色欲情网站iwww九文堂 | 六月丁香婷婷色狠狠久久 | 日日橹狠狠爱欧美视频 | 久久综合九色综合欧美狠狠 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 亚洲中文字幕av在天堂 | 国模大胆一区二区三区 | 呦交小u女精品视频 | 成人免费视频在线观看 | 国产无av码在线观看 | 亚洲精品国产精品乱码不卡 | 2020久久香蕉国产线看观看 | 好屌草这里只有精品 | 国产精品毛片一区二区 | 亚洲精品无码国产 | 东京一本一道一二三区 | 狠狠色噜噜狠狠狠狠7777米奇 | 俄罗斯老熟妇色xxxx | 亚洲国产高清在线观看视频 | 国产色xx群视频射精 | 免费观看激色视频网站 | 日韩av激情在线观看 | 免费男性肉肉影院 | 久久久精品人妻久久影视 | 成人精品视频一区二区 | 精品夜夜澡人妻无码av蜜桃 | 日韩人妻少妇一区二区三区 | 大肉大捧一进一出好爽视频 | 色综合久久88色综合天天 | 国产精品无码一区二区三区不卡 | 波多野42部无码喷潮在线 | 300部国产真实乱 | 一个人看的视频www在线 | 国产成人亚洲综合无码 | 午夜精品久久久内射近拍高清 | 亚洲中文字幕无码中字 | 国产成人无码av片在线观看不卡 | 亚洲国产精品毛片av不卡在线 | 日本熟妇乱子伦xxxx | 久久99精品国产麻豆蜜芽 | 国产成人无码av在线影院 | 精品厕所偷拍各类美女tp嘘嘘 | 国产av无码专区亚洲a∨毛片 | 人人澡人人妻人人爽人人蜜桃 | 国产人妻人伦精品1国产丝袜 | 久久精品人人做人人综合试看 | 又大又黄又粗又爽的免费视频 | 欧美丰满老熟妇xxxxx性 | 亚洲成av人综合在线观看 | 久久久精品国产sm最大网站 | 亚洲综合久久一区二区 | 国产精品亚洲а∨无码播放麻豆 | 亚洲啪av永久无码精品放毛片 | 日日碰狠狠躁久久躁蜜桃 | 亚洲区欧美区综合区自拍区 | 国产成人av免费观看 | 国产精品毛多多水多 | 搡女人真爽免费视频大全 | 蜜臀av在线观看 在线欧美精品一区二区三区 | 色欲av亚洲一区无码少妇 | 日日橹狠狠爱欧美视频 | 中文字幕 亚洲精品 第1页 | 久久久精品人妻久久影视 | 爱做久久久久久 | 男女超爽视频免费播放 | 少妇激情av一区二区 | 在线精品国产一区二区三区 | 男女下面进入的视频免费午夜 | 丁香啪啪综合成人亚洲 | 久久成人a毛片免费观看网站 | 国产综合色产在线精品 | 亚洲一区二区三区播放 | 亚洲成av人影院在线观看 | 婷婷五月综合激情中文字幕 | 欧美性猛交xxxx富婆 | 无码精品国产va在线观看dvd | 亚洲国产精品久久久天堂 | 欧美高清在线精品一区 | 亚洲精品久久久久avwww潮水 | 国产69精品久久久久app下载 | 国产性生大片免费观看性 | 久久精品女人天堂av免费观看 | 午夜无码人妻av大片色欲 | 亚洲の无码国产の无码影院 | 亚洲日本va中文字幕 | 超碰97人人做人人爱少妇 | 午夜福利试看120秒体验区 | 7777奇米四色成人眼影 | 红桃av一区二区三区在线无码av | 国产亚洲精品久久久闺蜜 | 在线观看国产午夜福利片 | а√资源新版在线天堂 | 免费无码一区二区三区蜜桃大 | 日本www一道久久久免费榴莲 | 久久综合给合久久狠狠狠97色 | 婷婷六月久久综合丁香 | 午夜精品一区二区三区的区别 | 99视频精品全部免费免费观看 | 精品久久久无码中文字幕 | 夜夜夜高潮夜夜爽夜夜爰爰 | 国产在线aaa片一区二区99 | 久久久精品成人免费观看 | 精品国产福利一区二区 | 丰满肥臀大屁股熟妇激情视频 | 久在线观看福利视频 | 欧美日本日韩 | 精品乱码久久久久久久 | 国产香蕉尹人综合在线观看 | 国产人妻人伦精品1国产丝袜 | 欧美精品国产综合久久 | 在线观看国产一区二区三区 | 色一情一乱一伦 | 丰满人妻一区二区三区免费视频 | 熟妇人妻无码xxx视频 | 欧美兽交xxxx×视频 | 偷窥日本少妇撒尿chinese | av香港经典三级级 在线 | 欧美日韩在线亚洲综合国产人 | 亚洲国精产品一二二线 | www国产亚洲精品久久久日本 | 欧美三级不卡在线观看 | 性色av无码免费一区二区三区 | 国产亚洲美女精品久久久2020 | 熟女少妇在线视频播放 | 乱人伦人妻中文字幕无码久久网 | 日日橹狠狠爱欧美视频 | 亚洲精品国产精品乱码不卡 | 激情五月综合色婷婷一区二区 | 欧美精品在线观看 | 无码人妻精品一区二区三区不卡 | 国产美女极度色诱视频www | 国产人妻久久精品二区三区老狼 | 国产超级va在线观看视频 | 偷窥村妇洗澡毛毛多 | 日日麻批免费40分钟无码 | 67194成是人免费无码 | 久久精品人人做人人综合试看 | 377p欧洲日本亚洲大胆 | 97无码免费人妻超级碰碰夜夜 | 亚洲中文字幕无码中字 | 亚洲精品综合一区二区三区在线 | 精品一二三区久久aaa片 | 精品久久久中文字幕人妻 | 欧美放荡的少妇 | 无码精品人妻一区二区三区av | 中文无码伦av中文字幕 | 日本爽爽爽爽爽爽在线观看免 | 久久天天躁夜夜躁狠狠 | 人妻夜夜爽天天爽三区 | 国产va免费精品观看 | 精品欧洲av无码一区二区三区 | 欧美成人免费全部网站 | 狂野欧美激情性xxxx | 少妇无码av无码专区在线观看 | 亚洲精品综合一区二区三区在线 | 熟妇人妻无码xxx视频 | 无码播放一区二区三区 | 国产精品美女久久久网av | 99久久久无码国产精品免费 | 亚洲精品国产精品乱码不卡 | 少妇性l交大片 | 久久精品国产一区二区三区 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 红桃av一区二区三区在线无码av | 无码人妻丰满熟妇区毛片18 | 国产艳妇av在线观看果冻传媒 | 久久精品一区二区三区四区 | 欧美老熟妇乱xxxxx | 亚洲精品一区二区三区婷婷月 | 国产精品久久久午夜夜伦鲁鲁 | 黑人巨大精品欧美一区二区 | 国产舌乚八伦偷品w中 | 欧美日韩在线亚洲综合国产人 | 亚洲成a人片在线观看日本 | 成年美女黄网站色大免费全看 | 无码人妻精品一区二区三区下载 | 亚洲国产av美女网站 | 丰满人妻翻云覆雨呻吟视频 | 亚洲国产精品一区二区第一页 | 女人高潮内射99精品 | 精品久久久久香蕉网 | a片免费视频在线观看 | 十八禁真人啪啪免费网站 | 亚洲色成人中文字幕网站 | 亚洲国产精品美女久久久久 | 久久亚洲中文字幕无码 | 国产精品久久久久7777 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 国产高清av在线播放 | 国产午夜亚洲精品不卡 | 成年美女黄网站色大免费全看 | 国产成人无码av在线影院 | 少妇被粗大的猛进出69影院 | 性开放的女人aaa片 | 男女爱爱好爽视频免费看 | 东京一本一道一二三区 | 97精品人妻一区二区三区香蕉 | 亚洲区欧美区综合区自拍区 | 无码吃奶揉捏奶头高潮视频 | 麻豆md0077饥渴少妇 | 国产精品亚洲一区二区三区喷水 | 亚洲日韩精品欧美一区二区 | 午夜免费福利小电影 | 国产真实伦对白全集 | 牲交欧美兽交欧美 | 粉嫩少妇内射浓精videos | 中文字幕无码乱人伦 | 99久久99久久免费精品蜜桃 | 亚洲精品中文字幕 | 强伦人妻一区二区三区视频18 | 色综合久久久无码中文字幕 | 夜夜高潮次次欢爽av女 | 99久久久国产精品无码免费 | 久久久久成人精品免费播放动漫 | 丰满岳乱妇在线观看中字无码 | 岛国片人妻三上悠亚 | 国内老熟妇对白xxxxhd | 免费无码午夜福利片69 | 中文字幕无码免费久久9一区9 | 丰满人妻一区二区三区免费视频 | 成人试看120秒体验区 | 成人片黄网站色大片免费观看 | 成人性做爰aaa片免费看不忠 | 久久精品国产日本波多野结衣 | 4hu四虎永久在线观看 | 日韩精品成人一区二区三区 | 无码av免费一区二区三区试看 | 久久久婷婷五月亚洲97号色 | 免费观看又污又黄的网站 | av小次郎收藏 | 日本熟妇浓毛 | 亚洲欧美日韩综合久久久 | 国产精品18久久久久久麻辣 | 欧美丰满老熟妇xxxxx性 | 国产精品久久国产精品99 | 黑人巨大精品欧美黑寡妇 | 成人精品天堂一区二区三区 | 欧美成人高清在线播放 | 无码人妻少妇伦在线电影 | 理论片87福利理论电影 | 精品欧洲av无码一区二区三区 | 久久zyz资源站无码中文动漫 | 乱码午夜-极国产极内射 | 女人被男人躁得好爽免费视频 | 捆绑白丝粉色jk震动捧喷白浆 | 18禁止看的免费污网站 | 一二三四社区在线中文视频 | 久久精品人妻少妇一区二区三区 | 最新国产乱人伦偷精品免费网站 | 久久aⅴ免费观看 | 久久久久人妻一区精品色欧美 | 久久国语露脸国产精品电影 | 国产又爽又黄又刺激的视频 | 丰满少妇人妻久久久久久 | 成人精品视频一区二区 | 成熟人妻av无码专区 | 久久精品国产日本波多野结衣 | 国产小呦泬泬99精品 | 老熟女乱子伦 | 老太婆性杂交欧美肥老太 | 婷婷五月综合缴情在线视频 | 日本丰满熟妇videos | 自拍偷自拍亚洲精品被多人伦好爽 | 无码国产色欲xxxxx视频 | 欧美激情内射喷水高潮 | 国产日产欧产精品精品app | 人人爽人人澡人人高潮 | 97久久超碰中文字幕 | 天天综合网天天综合色 | 国产精品美女久久久 | 亚洲高清偷拍一区二区三区 | 俺去俺来也www色官网 | 麻豆果冻传媒2021精品传媒一区下载 | 欧美激情一区二区三区成人 | 国产亚洲视频中文字幕97精品 | 亚洲色大成网站www国产 | 动漫av网站免费观看 | 精品人妻人人做人人爽夜夜爽 | 日本精品久久久久中文字幕 | 大乳丰满人妻中文字幕日本 | 日韩av无码一区二区三区 | 极品嫩模高潮叫床 | 精品一区二区不卡无码av | 中文无码精品a∨在线观看不卡 | 国产精品久久久午夜夜伦鲁鲁 | 国产人妻大战黑人第1集 | 欧洲欧美人成视频在线 | 国精产品一区二区三区 | 一本加勒比波多野结衣 | 98国产精品综合一区二区三区 | 女人高潮内射99精品 | 欧美丰满少妇xxxx性 | 高潮毛片无遮挡高清免费 | 成年女人永久免费看片 | 亚洲色欲色欲天天天www | 色综合久久久无码中文字幕 | 国产精品自产拍在线观看 | 日日摸日日碰夜夜爽av | 精品成在人线av无码免费看 | 一本久久伊人热热精品中文字幕 | 中文精品久久久久人妻不卡 | 丰满肥臀大屁股熟妇激情视频 | 内射爽无广熟女亚洲 | 欧美精品无码一区二区三区 | 波多野42部无码喷潮在线 | 无遮无挡爽爽免费视频 | 成人精品视频一区二区 | 无码乱肉视频免费大全合集 | 日本欧美一区二区三区乱码 | 国产成人无码av在线影院 | 国精产品一品二品国精品69xx | 青青草原综合久久大伊人精品 | 欧美日韩精品 | 综合人妻久久一区二区精品 | 成人性做爰aaa片免费看不忠 | 无码av中文字幕免费放 | 人人妻人人澡人人爽欧美一区九九 | 亚洲码国产精品高潮在线 | 国产在线精品一区二区三区直播 | 97无码免费人妻超级碰碰夜夜 | 少妇高潮一区二区三区99 | 老熟女乱子伦 | 性史性农村dvd毛片 | 国产欧美精品一区二区三区 | 成人欧美一区二区三区 | 国产成人精品无码播放 | 男女爱爱好爽视频免费看 | 粗大的内捧猛烈进出视频 | 免费国产成人高清在线观看网站 | 夜夜高潮次次欢爽av女 | 一本加勒比波多野结衣 | 人妻少妇精品视频专区 | 国内少妇偷人精品视频 | 亚洲日本一区二区三区在线 | 国产黄在线观看免费观看不卡 | 久久伊人色av天堂九九小黄鸭 | 中文亚洲成a人片在线观看 | 无码av岛国片在线播放 | 丰满少妇高潮惨叫视频 | 人妻尝试又大又粗久久 | 偷窥村妇洗澡毛毛多 | 综合人妻久久一区二区精品 | 男女下面进入的视频免费午夜 | 天天做天天爱天天爽综合网 | 国产成人午夜福利在线播放 | 亚洲精品一区二区三区大桥未久 | 国精品人妻无码一区二区三区蜜柚 | 欧美熟妇另类久久久久久多毛 | 国产成人久久精品流白浆 | 欧美日本免费一区二区三区 | 国产无套粉嫩白浆在线 | 99视频精品全部免费免费观看 | 亚洲成av人影院在线观看 | 国产人妻精品一区二区三区不卡 | 欧美成人家庭影院 | 日韩人妻无码中文字幕视频 | 日日天日日夜日日摸 | 毛片内射-百度 | 无码人妻少妇伦在线电影 | 日韩亚洲欧美中文高清在线 | 日本高清一区免费中文视频 | 成人精品视频一区二区三区尤物 | 无码中文字幕色专区 | 少妇激情av一区二区 | 国产午夜亚洲精品不卡下载 | 久久人人97超碰a片精品 | 日欧一片内射va在线影院 | 最近中文2019字幕第二页 | 亚洲精品久久久久久久久久久 | 日韩av激情在线观看 | 日本熟妇大屁股人妻 | 国产亚洲精品久久久久久久久动漫 | 九九综合va免费看 | 亚洲国产成人av在线观看 | 2019午夜福利不卡片在线 | 国产成人无码av片在线观看不卡 | 精品一区二区三区波多野结衣 | 女人高潮内射99精品 | 亚洲欧美精品aaaaaa片 | 无遮无挡爽爽免费视频 | 久久精品丝袜高跟鞋 | 日韩av无码一区二区三区不卡 | 色综合久久中文娱乐网 | 欧美猛少妇色xxxxx | 熟女少妇人妻中文字幕 | 嫩b人妻精品一区二区三区 | 国产精品久久久av久久久 | 久久久久免费看成人影片 | 免费看少妇作爱视频 | 国语自产偷拍精品视频偷 | 天堂亚洲2017在线观看 | 18无码粉嫩小泬无套在线观看 | 午夜精品久久久内射近拍高清 | 国产精品高潮呻吟av久久 | 18禁黄网站男男禁片免费观看 | 丰满人妻精品国产99aⅴ | 国产内射老熟女aaaa | 亚洲国产精品一区二区第一页 | 亚洲成a人片在线观看日本 | 在线精品国产一区二区三区 | 人妻有码中文字幕在线 | 男人的天堂2018无码 | 久久久亚洲欧洲日产国码αv | 福利一区二区三区视频在线观看 | √天堂资源地址中文在线 | 久久99国产综合精品 | 免费播放一区二区三区 | 男女下面进入的视频免费午夜 | 国产片av国语在线观看 | 国产办公室秘书无码精品99 | 在线观看国产午夜福利片 | 成人片黄网站色大片免费观看 | 国产精品资源一区二区 | 少妇的肉体aa片免费 | 麻豆国产丝袜白领秘书在线观看 | 国产午夜亚洲精品不卡下载 | 波多野结衣av在线观看 | 少妇人妻偷人精品无码视频 | 熟妇人妻无码xxx视频 | 东北女人啪啪对白 | 99久久久无码国产aaa精品 | 亚洲色在线无码国产精品不卡 | 国产xxx69麻豆国语对白 | 国产明星裸体无码xxxx视频 | 久久国产精品萌白酱免费 | 人人妻在人人 | 精品久久久无码中文字幕 | 日本一区二区更新不卡 | 精品人妻人人做人人爽 | 亚洲精品一区三区三区在线观看 | 欧美人与禽zoz0性伦交 | 亚洲精品中文字幕 | 中文字幕人妻丝袜二区 | 国产亚洲精品久久久久久久 | 人妻aⅴ无码一区二区三区 | 亚洲国产精品成人久久蜜臀 | а√资源新版在线天堂 | 免费乱码人妻系列无码专区 | 日韩精品乱码av一区二区 | 亚洲色在线无码国产精品不卡 | 中文毛片无遮挡高清免费 | 亚洲gv猛男gv无码男同 | 天天拍夜夜添久久精品 | 无码av免费一区二区三区试看 | 精品人妻人人做人人爽 | 性做久久久久久久久 | 国产两女互慰高潮视频在线观看 | 国产成人无码午夜视频在线观看 | 中文字幕久久久久人妻 | 日韩精品成人一区二区三区 | 久久亚洲中文字幕无码 | 国产免费久久久久久无码 | 欧美国产日韩久久mv | 亚洲精品中文字幕久久久久 | 国产亚洲精品久久久ai换 | 扒开双腿疯狂进出爽爽爽视频 | 日欧一片内射va在线影院 | 欧美兽交xxxx×视频 | 国产成人午夜福利在线播放 | 国产精品-区区久久久狼 | 亚洲性无码av中文字幕 | 亚洲爆乳精品无码一区二区三区 | 男人的天堂2018无码 | 国产乱子伦视频在线播放 | 国产极品美女高潮无套在线观看 | 伊人久久婷婷五月综合97色 | 午夜精品久久久内射近拍高清 | 偷窥日本少妇撒尿chinese | 亚洲欧美国产精品专区久久 | 麻豆国产人妻欲求不满 | 熟妇激情内射com | 午夜理论片yy44880影院 | aⅴ在线视频男人的天堂 | 国产又粗又硬又大爽黄老大爷视 | 欧美成人家庭影院 | 成人试看120秒体验区 | 久久久久成人精品免费播放动漫 | 亚洲午夜久久久影院 | 成人精品视频一区二区 | 一本色道久久综合狠狠躁 | 亚洲人成无码网www | 国产亚洲精品久久久久久 | 捆绑白丝粉色jk震动捧喷白浆 | 欧美激情内射喷水高潮 | 亚洲国产精品一区二区第一页 | 精品夜夜澡人妻无码av蜜桃 | 日本饥渴人妻欲求不满 | 少妇高潮喷潮久久久影院 | 日本护士xxxxhd少妇 | 精品人妻中文字幕有码在线 | 精品无码一区二区三区爱欲 | 国产精品久久国产精品99 | 亚拍精品一区二区三区探花 | 国产性生交xxxxx无码 | av无码不卡在线观看免费 | 欧美放荡的少妇 | 中文字幕无码免费久久99 | 蜜臀av在线播放 久久综合激激的五月天 | 国内精品人妻无码久久久影院 | 国产午夜精品一区二区三区嫩草 | 亚洲成色www久久网站 | 免费无码午夜福利片69 | 丰满少妇熟乱xxxxx视频 | 无码成人精品区在线观看 | 天天综合网天天综合色 | 亚洲一区av无码专区在线观看 | 两性色午夜免费视频 | 强伦人妻一区二区三区视频18 | 双乳奶水饱满少妇呻吟 | 人妻人人添人妻人人爱 | 少妇被黑人到高潮喷出白浆 | 波多野结衣一区二区三区av免费 | 久久久久国色av免费观看性色 | 欧美国产日韩亚洲中文 | 亚洲精品综合一区二区三区在线 | 人妻互换免费中文字幕 | 国产av一区二区精品久久凹凸 | 欧美成人午夜精品久久久 | 亚洲精品久久久久久一区二区 | 十八禁真人啪啪免费网站 | 中文字幕av无码一区二区三区电影 | 亚洲国产精品成人久久蜜臀 | 欧美日韩色另类综合 | 成人精品视频一区二区 | 丰满少妇人妻久久久久久 | 国产黄在线观看免费观看不卡 | 婷婷五月综合缴情在线视频 | www成人国产高清内射 | 中文无码成人免费视频在线观看 | 国产国语老龄妇女a片 | 无遮无挡爽爽免费视频 | 东京热一精品无码av | 给我免费的视频在线观看 | 国产熟女一区二区三区四区五区 | 国产肉丝袜在线观看 | 国产深夜福利视频在线 | 少妇人妻偷人精品无码视频 | 亚洲精品久久久久中文第一幕 | 亚洲日韩精品欧美一区二区 | 5858s亚洲色大成网站www | 东京一本一道一二三区 | 熟妇人妻中文av无码 | 欧洲vodafone精品性 | 精品一二三区久久aaa片 | 国产网红无码精品视频 | 国产av一区二区精品久久凹凸 | 中文无码精品a∨在线观看不卡 | 亚洲爆乳大丰满无码专区 | 夜夜躁日日躁狠狠久久av | 麻豆国产人妻欲求不满谁演的 | 国产精品久久国产精品99 | 99久久精品无码一区二区毛片 | 亚无码乱人伦一区二区 | 天天综合网天天综合色 | 久久精品国产99精品亚洲 | 疯狂三人交性欧美 | a国产一区二区免费入口 | 5858s亚洲色大成网站www | 男女性色大片免费网站 | 国产三级久久久精品麻豆三级 | 男女猛烈xx00免费视频试看 | 亚洲 a v无 码免 费 成 人 a v | 狠狠综合久久久久综合网 | 黑人粗大猛烈进出高潮视频 | 国内精品人妻无码久久久影院蜜桃 | 亚洲伊人久久精品影院 | 午夜时刻免费入口 | 99久久无码一区人妻 | 日韩欧美中文字幕公布 | 亚洲区小说区激情区图片区 | 欧洲熟妇色 欧美 | 久久国内精品自在自线 | 精品乱码久久久久久久 | 成人试看120秒体验区 | 纯爱无遮挡h肉动漫在线播放 | 国产成人综合美国十次 | 蜜桃视频插满18在线观看 | 国产亚洲视频中文字幕97精品 | 妺妺窝人体色www在线小说 | 国产精品.xx视频.xxtv | 成人免费视频视频在线观看 免费 | 国产97人人超碰caoprom | 妺妺窝人体色www在线小说 | 久久久中文久久久无码 | 色一情一乱一伦一区二区三欧美 | 成熟女人特级毛片www免费 | 国产色在线 | 国产 | 亚洲 a v无 码免 费 成 人 a v | 亚洲精品一区二区三区在线 | av在线亚洲欧洲日产一区二区 | 久久国产精品二国产精品 | 久久久久久久人妻无码中文字幕爆 | 大屁股大乳丰满人妻 | 久久精品丝袜高跟鞋 | 男女下面进入的视频免费午夜 | 秋霞成人午夜鲁丝一区二区三区 | 十八禁真人啪啪免费网站 | 97夜夜澡人人爽人人喊中国片 | 国内丰满熟女出轨videos | 久久精品一区二区三区四区 | 牲欲强的熟妇农村老妇女 | 无码av最新清无码专区吞精 | 亚洲中文字幕成人无码 | 国产亚洲美女精品久久久2020 | 玩弄少妇高潮ⅹxxxyw | 内射老妇bbwx0c0ck | 男人的天堂2018无码 | 7777奇米四色成人眼影 | 午夜肉伦伦影院 | 亚洲日本va午夜在线电影 | 麻豆国产丝袜白领秘书在线观看 | 亚洲欧美国产精品久久 | 久久精品国产精品国产精品污 | 日韩人妻少妇一区二区三区 | 国产亚洲人成a在线v网站 | 麻豆国产人妻欲求不满谁演的 | 成人无码精品1区2区3区免费看 | 99精品国产综合久久久久五月天 | 欧美日本日韩 | 无码国产色欲xxxxx视频 | 国产片av国语在线观看 | 精品无码av一区二区三区 | 国产精品多人p群无码 | 熟妇人妻激情偷爽文 | 欧美黑人性暴力猛交喷水 | 无码人妻精品一区二区三区不卡 | 久久国产自偷自偷免费一区调 | 国产一区二区三区日韩精品 | 在线观看欧美一区二区三区 | 亚洲人成影院在线观看 | 国产精品二区一区二区aⅴ污介绍 | 亚洲国产精华液网站w | 国产免费无码一区二区视频 | 免费乱码人妻系列无码专区 | 亚洲乱亚洲乱妇50p | 欧美放荡的少妇 | 欧美精品免费观看二区 | 一本色道久久综合狠狠躁 | 亚洲国产精品毛片av不卡在线 | 国产亚洲精品久久久ai换 | 一二三四在线观看免费视频 | 国产 精品 自在自线 | 国产成人av免费观看 | 成人毛片一区二区 | 天天综合网天天综合色 | 久久久久成人精品免费播放动漫 | 99久久久无码国产aaa精品 | 粉嫩少妇内射浓精videos | 思思久久99热只有频精品66 | 久久99精品国产.久久久久 | 人妻天天爽夜夜爽一区二区 | 成 人 免费观看网站 | 性欧美大战久久久久久久 | 麻豆成人精品国产免费 | 亚洲毛片av日韩av无码 | 欧美 日韩 亚洲 在线 | 精品厕所偷拍各类美女tp嘘嘘 | 久久综合狠狠综合久久综合88 | 亚洲码国产精品高潮在线 | 国产精品久久久久久无码 | 亚洲成av人影院在线观看 | 久久国产自偷自偷免费一区调 | 永久免费观看国产裸体美女 | 国产午夜无码视频在线观看 | 四虎影视成人永久免费观看视频 | 国产精品国产自线拍免费软件 | 亚洲欧美综合区丁香五月小说 | 日韩人妻无码一区二区三区久久99 | 无码国模国产在线观看 | 性啪啪chinese东北女人 | 久久人人爽人人爽人人片ⅴ | 成人免费无码大片a毛片 | 成人无码视频在线观看网站 | 亚洲男人av天堂午夜在 | 欧美成人高清在线播放 | 麻豆果冻传媒2021精品传媒一区下载 | 欧美第一黄网免费网站 | 国产在线精品一区二区高清不卡 | 亚洲日韩av一区二区三区四区 | 久久久www成人免费毛片 | 亚洲阿v天堂在线 | 国产尤物精品视频 | 一本色道久久综合亚洲精品不卡 | 亚洲日本一区二区三区在线 | 国产成人无码区免费内射一片色欲 | 亚洲 日韩 欧美 成人 在线观看 | 精品无人国产偷自产在线 | 天下第一社区视频www日本 | 国产午夜无码精品免费看 | 日产精品高潮呻吟av久久 | 久久久婷婷五月亚洲97号色 | 亚洲国产精品久久久久久 | 亚洲伊人久久精品影院 | www国产亚洲精品久久久日本 | 人人澡人人透人人爽 | 嫩b人妻精品一区二区三区 | 一本久道久久综合婷婷五月 | 日日麻批免费40分钟无码 | 精品久久8x国产免费观看 | 国产亚洲日韩欧美另类第八页 | 成人无码视频免费播放 | 狠狠躁日日躁夜夜躁2020 | 国产高潮视频在线观看 | 日本饥渴人妻欲求不满 | 香蕉久久久久久av成人 | 乱人伦人妻中文字幕无码 | 少妇激情av一区二区 | 亚洲综合无码久久精品综合 | 亚洲性无码av中文字幕 | 国产激情无码一区二区 | 国产无遮挡吃胸膜奶免费看 | 国产精品成人av在线观看 | 97无码免费人妻超级碰碰夜夜 | 国产午夜精品一区二区三区嫩草 | 色欲综合久久中文字幕网 | 思思久久99热只有频精品66 | 97久久超碰中文字幕 | 国产免费观看黄av片 | 国产凸凹视频一区二区 | 97精品国产97久久久久久免费 | 少妇高潮一区二区三区99 | 亚洲经典千人经典日产 | 国产美女极度色诱视频www | 精品偷自拍另类在线观看 | 九九热爱视频精品 | 亚洲人成网站在线播放942 | 亚洲国产av美女网站 | 中国大陆精品视频xxxx | 亚洲gv猛男gv无码男同 | 成人免费视频视频在线观看 免费 | 日本一区二区三区免费播放 | 老熟妇乱子伦牲交视频 | 一本久久a久久精品亚洲 | 国产艳妇av在线观看果冻传媒 | 又粗又大又硬毛片免费看 | 天堂一区人妻无码 | 久久亚洲a片com人成 | 高潮毛片无遮挡高清免费 | 老熟女重囗味hdxx69 | 熟女俱乐部五十路六十路av | 女高中生第一次破苞av | 欧美xxxx黑人又粗又长 | 久久99精品国产麻豆 | 人妻少妇精品无码专区动漫 | 国产精品亚洲а∨无码播放麻豆 | 老司机亚洲精品影院无码 | 亚洲人成网站在线播放942 | 少妇性l交大片欧洲热妇乱xxx | 俄罗斯老熟妇色xxxx | 亚洲中文字幕无码一久久区 | 色婷婷香蕉在线一区二区 | 美女毛片一区二区三区四区 | 久久精品国产精品国产精品污 | 国产成人无码区免费内射一片色欲 | 免费观看又污又黄的网站 | 国产乱码精品一品二品 | 成人无码影片精品久久久 | 兔费看少妇性l交大片免费 | 水蜜桃亚洲一二三四在线 | 偷窥村妇洗澡毛毛多 | 一本久道久久综合婷婷五月 | 国内精品人妻无码久久久影院蜜桃 | 人妻少妇精品久久 | 精品欧美一区二区三区久久久 | 国产成人精品无码播放 | а天堂中文在线官网 | 欧美zoozzooz性欧美 | 免费人成在线观看网站 | 国产熟妇另类久久久久 | 久久人妻内射无码一区三区 | 大肉大捧一进一出好爽视频 | 思思久久99热只有频精品66 | 国产激情综合五月久久 | 理论片87福利理论电影 | 一个人看的视频www在线 | 精品国产一区av天美传媒 | 亚洲综合精品香蕉久久网 | 国产精品无码久久av | 在线播放免费人成毛片乱码 | 人妻夜夜爽天天爽三区 | 中文无码伦av中文字幕 | 丰满人妻一区二区三区免费视频 | 高清不卡一区二区三区 | 国产熟女一区二区三区四区五区 | 嫩b人妻精品一区二区三区 | 麻豆果冻传媒2021精品传媒一区下载 | 欧美刺激性大交 | 久久婷婷五月综合色国产香蕉 | 97久久超碰中文字幕 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 亚无码乱人伦一区二区 | 亚洲精品一区二区三区大桥未久 | 天堂а√在线中文在线 | 免费观看激色视频网站 | 亚洲自偷精品视频自拍 | 久久精品国产一区二区三区肥胖 | 亚洲一区二区三区在线观看网站 | 88国产精品欧美一区二区三区 | 日韩人妻系列无码专区 | 少妇无码av无码专区在线观看 | 免费网站看v片在线18禁无码 | 玩弄人妻少妇500系列视频 | 激情亚洲一区国产精品 | 亚洲熟悉妇女xxx妇女av | 久久亚洲中文字幕无码 | 夫妻免费无码v看片 | 欧美日韩人成综合在线播放 | 一本色道婷婷久久欧美 | 国产suv精品一区二区五 | 中文字幕无码日韩专区 | 免费无码午夜福利片69 | 亚洲伊人久久精品影院 | 一本久道久久综合狠狠爱 | a片免费视频在线观看 | 又湿又紧又大又爽a视频国产 | 亚洲码国产精品高潮在线 | 亚洲色www成人永久网址 | 免费无码午夜福利片69 | 国产一区二区三区精品视频 | 乱码av麻豆丝袜熟女系列 | 奇米影视7777久久精品 | 一本大道久久东京热无码av | 久久午夜夜伦鲁鲁片无码免费 | 精品一二三区久久aaa片 | 在线天堂新版最新版在线8 | 国产香蕉尹人综合在线观看 | 欧洲精品码一区二区三区免费看 | 久久精品女人天堂av免费观看 | 久久久久久av无码免费看大片 | 亚洲自偷精品视频自拍 | 精品成在人线av无码免费看 | 日韩精品成人一区二区三区 | 欧美人与物videos另类 | 国产精品久久久久久亚洲毛片 | 无码人妻少妇伦在线电影 | 国产在线aaa片一区二区99 | 夜夜躁日日躁狠狠久久av | 国产精品丝袜黑色高跟鞋 | 夜先锋av资源网站 | 秋霞成人午夜鲁丝一区二区三区 | 色综合久久中文娱乐网 | 一本色道久久综合亚洲精品不卡 | 大肉大捧一进一出好爽视频 | 无码成人精品区在线观看 | 日本成熟视频免费视频 | 国产精品无码久久av | 老司机亚洲精品影院无码 | 久久人妻内射无码一区三区 | 久久 国产 尿 小便 嘘嘘 | 久久精品99久久香蕉国产色戒 | 久久zyz资源站无码中文动漫 | 久久99精品久久久久久 | 狠狠综合久久久久综合网 | 成人免费无码大片a毛片 | 国产va免费精品观看 | 国产av一区二区三区最新精品 | 性欧美牲交xxxxx视频 | 无码任你躁久久久久久久 | 一本久久a久久精品vr综合 | 思思久久99热只有频精品66 | 大肉大捧一进一出好爽视频 | 无码播放一区二区三区 | 国产日产欧产精品精品app | 国产日产欧产精品精品app | 国产精品人人妻人人爽 | 97人妻精品一区二区三区 | 亚洲 a v无 码免 费 成 人 a v | 国产精品无码一区二区桃花视频 | 日韩精品一区二区av在线 | 1000部啪啪未满十八勿入下载 | 亚洲熟妇色xxxxx欧美老妇 | 亚洲综合在线一区二区三区 | yw尤物av无码国产在线观看 | 欧美亚洲日韩国产人成在线播放 | 全黄性性激高免费视频 | 亚洲阿v天堂在线 | 久久久婷婷五月亚洲97号色 | 麻豆av传媒蜜桃天美传媒 | 国产熟女一区二区三区四区五区 | 乱码午夜-极国产极内射 | 一本精品99久久精品77 | 久久99精品国产麻豆 | 牲欲强的熟妇农村老妇女视频 | 欧美日韩一区二区三区自拍 | 久久人妻内射无码一区三区 | 麻花豆传媒剧国产免费mv在线 | 国产两女互慰高潮视频在线观看 | 一本精品99久久精品77 | 奇米影视7777久久精品人人爽 | 亚洲精品一区二区三区四区五区 | 亚洲精品国偷拍自产在线麻豆 | 国产精品香蕉在线观看 | 黑人巨大精品欧美黑寡妇 | 熟妇人妻激情偷爽文 | 人人妻人人澡人人爽人人精品浪潮 | 精品国产青草久久久久福利 | 大乳丰满人妻中文字幕日本 | 精品久久综合1区2区3区激情 | 欧美乱妇无乱码大黄a片 | 无码播放一区二区三区 | 一本久道久久综合婷婷五月 | ass日本丰满熟妇pics | 午夜成人1000部免费视频 | 亚洲午夜福利在线观看 | 中文精品无码中文字幕无码专区 | 欧美阿v高清资源不卡在线播放 | 荫蒂被男人添的好舒服爽免费视频 | 国产网红无码精品视频 | 日本丰满护士爆乳xxxx | 中文字幕无线码 | 国产精品免费大片 | 日日摸天天摸爽爽狠狠97 | 国产无遮挡吃胸膜奶免费看 | 免费网站看v片在线18禁无码 | 久久无码中文字幕免费影院蜜桃 | 久久综合激激的五月天 | 久久久久成人精品免费播放动漫 | 好男人www社区 | 久久亚洲精品成人无码 | 久久国产精品精品国产色婷婷 | 黄网在线观看免费网站 | 久久久久久久久蜜桃 | 狂野欧美性猛xxxx乱大交 | 国产极品美女高潮无套在线观看 | 国产成人精品优优av | 人人妻人人澡人人爽人人精品浪潮 | 国产后入清纯学生妹 | 久久精品国产日本波多野结衣 | 乌克兰少妇xxxx做受 | 国产精品久久久久影院嫩草 | 欧美自拍另类欧美综合图片区 | 玩弄中年熟妇正在播放 | 久久久久亚洲精品男人的天堂 | 欧美人与物videos另类 | 樱花草在线播放免费中文 | 日韩欧美群交p片內射中文 | 麻豆精品国产精华精华液好用吗 | 2019nv天堂香蕉在线观看 | 久久精品女人天堂av免费观看 | 国产真实夫妇视频 | 综合网日日天干夜夜久久 | 永久免费观看美女裸体的网站 | 久久国产精品精品国产色婷婷 | 国产综合久久久久鬼色 | 55夜色66夜色国产精品视频 | 久久综合久久自在自线精品自 | 精品亚洲韩国一区二区三区 | 九月婷婷人人澡人人添人人爽 | 欧美喷潮久久久xxxxx | 一个人看的视频www在线 | 野外少妇愉情中文字幕 | 永久免费观看国产裸体美女 | 欧美日本日韩 | 亚洲精品无码国产 | 亚洲国产精品一区二区第一页 | 亚洲欧洲日本综合aⅴ在线 | 全黄性性激高免费视频 | 国产在线aaa片一区二区99 | 女人和拘做爰正片视频 | 免费中文字幕日韩欧美 | 久久伊人色av天堂九九小黄鸭 | 曰本女人与公拘交酡免费视频 | 欧美三级不卡在线观看 | 国产精品二区一区二区aⅴ污介绍 | 内射白嫩少妇超碰 | 欧美丰满熟妇xxxx | 噜噜噜亚洲色成人网站 | 国产成人无码av片在线观看不卡 | 最近中文2019字幕第二页 | 男女猛烈xx00免费视频试看 |