第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

計(jì)算同一 jango 模型中另一個(gè)字段的不同值搜索中的不同值

計(jì)算同一 jango 模型中另一個(gè)字段的不同值搜索中的不同值

Cats萌萌 2023-07-11 15:40:49
我正在嘗試從我的 django 模型表中提取一些分析。到目前為止,我可以計(jì)算字段的總值和字段的不同值。我還知道如何創(chuàng)建顯示不同字段內(nèi)字段總值的列表?,F(xiàn)在我想計(jì)算一個(gè)字段出現(xiàn)在不同字段的已經(jīng)不同值的列表中的不同實(shí)例。這是我正在使用的表:| uid   |  cid   ||-------|--------|| a     | apple  || a     | apple  || a     | grape  || b     | apple  || b     | grape  || c     | apple  || c     | pear   || c     | pear   || c     | pear   |所以我試圖提供的結(jié)果是:cid: apple (distinct uid count: 3),cid: grape (distinct uid count: 2),cid: pear (distinct uid count: 1)并且:cid apple's distinct uid's: a, b, ccid grape's distinct uid's: a, bcid pear's distinct uid's: c到目前為止,我已經(jīng)能夠獲得不同的計(jì)數(shù)和列表,如下所示:dist_uid_list = Fruit.objects.filter(client=user).values('uid').distinct()output >>> {'uid': 'a', 'uid': 'b', 'uid': 'c'}和這個(gè):dist_uid_count = Fruit.objects.filter(client=user).values('uid').distinct().count()output >>> {3}以及更復(fù)雜的:total_actions_per_cid = Fruit.objects\            .filter(client=user)\            .values('cid').distinct()\            .annotate(num_actions=Count('action_name'))\            .order_by('cid')output >>> {'cid': 'apple', 'num_actions': '4'}{'cid': 'grape', 'num_actions': '2'}{'cid': 'pear', 'num_actions': '3'}所以問題是:我怎樣才能進(jìn)入并獲取每個(gè)不同的“cid”并找到每個(gè)不同的“uid”中存在多少個(gè)不同的“uid”?
查看完整描述

1 回答

?
翻閱古今

TA貢獻(xiàn)1780條經(jīng)驗(yàn) 獲得超5個(gè)贊

計(jì)數(shù)聚合有一個(gè)不同的參數(shù),可能會(huì)有所幫助:


>>> q = Book.objects.annotate(Count('authors', distinct=True), Count('store', distinct=True))

https://docs.djangoproject.com/en/3.1/topics/db/aggregation/#combining-multiple-aggregations


因此您的查詢將如下所示:


# I removed the distinct after .values, as the values works

# like a GROUP BY, thus you will get already unique 'cid's

total_actions_per_cid = Fruit.objects\

            .filter(client=user)\

            .values('cid') \

            .annotate(num_uids=Count('uid', distinct=True))


查看完整回答
反對(duì) 回復(fù) 2023-07-11
  • 1 回答
  • 0 關(guān)注
  • 143 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)