码迷,mamicode.com
首页 > 编程语言 > 详细

如何用ORM自定义排序

时间:2019-09-10 17:40:50      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:字段名   连接   postgresq   extra   query   gre   res   position   字符串类   

ORM连接的数据库不同,方法也不同

postgresql:

a.extra(select={"new_order":"position(status in ‘2,3,4,1‘)"}).order_by("new_order")

a是queryset对象,new_order 是新的自定义的字段名,status是排序的字段,“2,3,4,1”是你自定义的顺序,也可以是字符串类型

mysql:

a.extra(select={"new_order":‘field(status,"2,3,4,1")‘}).order_by("new_order")

规则类似,但有所区别,这是我自己探索出来的,希望对大家有所帮助

 

如何用ORM自定义排序

标签:字段名   连接   postgresq   extra   query   gre   res   position   字符串类   

原文地址:https://www.cnblogs.com/zhaoweihang/p/11498400.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!