码迷,mamicode.com
首页 > 其他好文 > 详细

Django 字段查询谓词表

时间:2017-10-27 01:34:06      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:date   查询   images   lin   comment   pre   blog   ima   strong   

技术分享

filter(**kwargs): 返回符合筛选条件的数据集

exclude(**kwargs):   返回不符合筛选条件的数据集

Comment.objects.filter(pub_date__year=2015)

多个filter和exclude可以链接在一起查询

Comment.objects.filter(pub_date__year=2015).exclude(pub_date__month=1).exclude(n_visits__exact=0)

get() :查询单条记录,注意没有查询到数据的时候会报错  

Comment.objects.get(id_exact=1)

all():  查询所有数据

Comment.objects.all()
Comment.objects.all()[:10]
Comment.objects.all[10:20]

order_by():   排序

Comment.objects.order_by(‘headline‘)

  

  

  

  

Django 字段查询谓词表

标签:date   查询   images   lin   comment   pre   blog   ima   strong   

原文地址:http://www.cnblogs.com/Vee-Wang/p/7740067.html

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