标签: sql django
我想从模型中过滤前20条记录,有没有办法在Django中进行。或者我应该使用原始SQL吗?
答案 0 :(得分:1)
这样的东西?
first_twenty = MyModel.objects.filter.order_by('id')[:20]