1
28ms 2016-07-21 16:06:51 +08:00
用 raw sql 查比较方便
|
2
stargazer 2016-07-21 18:10:51 +08:00
raw +1
|
3
petelin 2016-07-21 18:33:00 +08:00 via Android
raw+1 有些东西真的不能一次搞出来,必须得自己写
|
6
Allianzcortex 2016-07-22 08:58:04 +08:00
我也感觉直接拼, 上原生 sql,Google 上搜“ django model select different type ”没有什么太好的结果
|
7
wph95 2016-07-22 10:14:25 +08:00
types = [car, taxx ...]
cars = Car.objects.filter(types_in=types) dict = {} for type in types: dict[type] = [] for car in cars: dict[car.type].append(car) |
10
hao1032 OP All 感谢大家的回复,最终决定新建立一个表,里面只保存各 type 最近的 100 个结果。
|