gpt4 book ai didi

php - Yii 2 更新全部不在

转载 作者:行者123 更新时间:2023-12-04 01:46:16 25 4
gpt4 key购买 nike

根据下面的代码,我想将 customer 中的所有内容更新为状态 1,其中 status = 2。但是,我想运行下面的代码,其中 customer_id 不在 (1, 3, 5, 8) 中。

$customerNotIn = array(1, 3, 5 ,8);
Customer::updateAll(['status' => 1], 'status = 2');

我怎样才能做到这一点?

最佳答案

条件可以采用您在 ->where() 中输入的格式,因此在您的情况下为:

$customerNotIn = array(1, 3, 5 ,8);
Customer::updateAll(['status' => 1], ['AND',
'status = 2',
['NOT IN', 'status', $customerNotIn]
]);

关于php - Yii 2 更新全部不在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43404670/

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