gpt4 book ai didi

mysql - 当两列同时不为 false 时的 where 条件

转载 作者:行者123 更新时间:2023-11-29 09:24:46 24 4
gpt4 key购买 nike

例如我有 2 列。状态 --> boolean 值允许 --> boolean 值

我正在尝试获取 1,0 - 0,1 - 1,1当状态为 false 且允许为 false 时,如何获取集合。

$data = Data::whereNot('allowed', false)->whereNot('status', false)->get();

是按预期返回 1,1 条件。我们可以在一行中进行这个查询吗?

最佳答案

获取其中之一为真,或两者都为真:

$data = Data::where('allowed', true)->orWhere('status', true)->get();

关于mysql - 当两列同时不为 false 时的 where 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59780991/

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