GROUP_CONCAT equivalent in Django(GROUP_CONCAT 在 Django 中的等价物)
问题描述
假设我有一张名为 fruits 的表格:
Say I have the following table called fruits:
id | type | name
-----------------
0 | apple | fuji
1 | apple | mac
2 | orange | navel
我的目标是最终得出不同types的数量和一个以逗号分隔的名称列表:
My goal is to ultimately come up with a count of the different types and a comma-delimited list of the names:
apple, 2, "fuji,mac"
orange, 1, "navel"
这可以通过 MySQL 中的 GROUP_CONCAT 轻松完成,但我在使用 Django 等效项时遇到了麻烦.这是我到目前为止所拥有的,但我缺少 GROUP_CONCAT 的东西:
This can be easily done with GROUP_CONCAT in MySQL but I'm having trouble with the Django equivalent. This is what I have so far but I am missing the GROUP_CONCAT stuff:
query_set = Fruits.objects.values('type').annotate(count=Count('type')).order_by('-count')
如果可能,我想避免使用原始 SQL 查询.
I would like to avoid using raw SQL queries if possible.
任何帮助将不胜感激!
谢谢!=)
推荐答案
Django ORM 不支持这个;如果您不想使用原始 SQL,那么您需要 分组并加入.
The Django ORM does not support this; if you don't want to use raw SQL then you'll need to group and join.
这篇关于GROUP_CONCAT 在 Django 中的等价物的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:GROUP_CONCAT 在 Django 中的等价物
基础教程推荐
- MySQL根据从其他列分组的值,对两列之间的值进行求和 2022-01-01
- 从字符串 TSQL 中获取数字 2021-01-01
- 带有WHERE子句的LAG()函数 2022-01-01
- MySQL 5.7参照时间戳生成日期列 2022-01-01
- while 在触发器内循环以遍历 sql 中表的所有列 2022-01-01
- 如何在 CakePHP 3 中实现 INSERT ON DUPLICATE KEY UPDATE aka upsert? 2021-01-01
- ORA-01830:日期格式图片在转换整个输入字符串之前结束/选择日期查询的总和 2021-01-01
- CHECKSUM 和 CHECKSUM_AGG:算法是什么? 2021-01-01
- 带更新的 sqlite CTE 2022-01-01
- 使用 VBS 和注册表来确定安装了哪个版本和 32 位 2021-01-01
