【python】用asq實現count(distinct cln)

來源:互聯網
上載者:User

假設一個表有6個欄位c1,c2,c3,c4,c5,c6,有如下的sql語句:

select c1,count(distinct(c6)) from tbl where c3>1 group by c3;

python中asq模組可以實作類別似的查詢,以下用一個樣本說明。

 

#!/usr/bin/env python2.7#-*- encoding: utf-8 -*-import osfrom datetime import *import timefrom asq.initiators import querydef test1():        src_list = [[6,6,6,3,7,9],[3,1,1,45,6,34],[2,9,5,435,56,34],[8,6,8,23,4,32],[2,6,8,435,2,8],[1,3,6,432,5,22],[1,3,5,6,2,435],[2,4,6,34,2,12]]        res_list = query(src_list).where(lambda p: p[2]>1).group_by(lambda p:p[2]).select(lambda p:[p[0][0],p.distinct(lambda p: p[5]).count()]).to_list()        print res_listif __name__ == '__main__':     test1()


運行結果:

 

[[6, 3], [2, 2], [8, 2]]
[Finished in 0.1s]


asq函數的邏輯順序依次是: where-->group by --> select --> distinct -->返回結果清單。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.