摘要:
F与Q查询 # 导入模块 from django.db.models import F,Q 数据准备: F的功能:能够帮助直接获取到表中某个字段对应的数据,当做查询条件 查询卖出数大于库存数的书籍 res = models.Book.objects.filter(sold__gt=F('invent 阅读全文
摘要:
多表操作前期准备 Models.py from django.db import models # Create your models here. # 书籍 class Book(models.Model): title = models.CharField(max_length=32) pric 阅读全文