gpt4 book ai didi

Django 不喜欢声明

转载 作者:行者123 更新时间:2023-12-04 23:09:26 27 4
gpt4 key购买 nike

如何在 Django 查询中使用 not like

    Model.objects.filter(keywords not like "null" or "undefined")

select * from model where keywords not like "%undefined%" or keywords not like "%null%";

最佳答案

使用 exclude功能和 Q对象

Model.objects.exclude(Q(keyword__contains='undefined') | Q(keyword__contains='null'))

关于Django 不喜欢声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4193097/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com