• 神奇的双下滑线查询


     查询价格大于200的书籍
    res = models.Book.objects.filter(price__gt=200)
    print(res)
     查询价格小于200的书籍
     res = models.Book.objects.filter(price__lt=200)
     print(res)
    
     查询价格大于等于200.22的书籍
     res = models.Book.objects.filter(price__gte=200.22)
      print(res)
      查询价格小于等于200.22的书籍
      res = models.Book.objects.filter(price__lte=200.22)
     print(res)
    
    
     查询价格要么是200,要么是300,要么是666.66
    res = models.Book.objects.filter(price__in=[200,300,666.66])
     print(res)
     查询价格在200到800之间的
     res = models.Book.objects.filter(price__range=(200,800))  # 两边都包含
     print(res)
    
     查询书籍名字中包含p的
        原生sql语句 模糊匹配
            like 
                %
                _
        """
     res = models.Book.objects.filter(title__contains='p')  # 仅仅只能拿小写p
     res = models.Book.objects.filter(title__icontains='p')  # 忽略大小写
    
     print(res)
    
    
     查询书籍是以三开头的
      res = models.Book.objects.filter(title__startswith='三')
      res1 = models.Book.objects.filter(title__endswith='p')
      print(res)
      print(res1)
    
    
        查询出版日期是2017的年(******)
        res = models.Book.objects.filter(create_time__year='2017')
        print(res)
    

      

    生前无需久睡,死后自会长眠,努力解决生活中遇到的各种问题,不畏将来,勇敢面对,加油,你是最胖的,哈哈哈
  • 相关阅读:
    STC15F2K60S2应用笔记
    2013春季求职第二面——珠海全志科技
    SAXReader解析XML文件
    利用socket实现java程序自动关闭
    java调用oracle存储过程
    spring定时任务的简单应用(转载)
    spring map注入的使用
    解析properties文件
    System.getProperty()参数大全
    JS正则表达式大全
  • 原文地址:https://www.cnblogs.com/panshao51km-cn/p/11553561.html
Copyright © 2020-2023  润新知