📜  在 django 中使用不同的运算符进行过滤 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:31.636000             🧑  作者: Mango

代码示例1
from myapp.models import Entry
from django.db.models import Q

Entry.objects.filter(~Q(id=3))

#will return all entries except the one(s) with 3 as their ID