📅  最后修改于: 2022-03-11 14:45:42.492000             🧑  作者: Mango
from myapp.models import Entry
from django.db.models import Q
# Returns all entries except those with 3 as their id
Entry.objects.filter(~Q(id=3))