gpt4 book ai didi

php - Laravel if then 条件

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

我有这个问题

        $query = Model::Select('table1.col1','table1.col2','table1.col3')
->join('table2', 'table1.id', '=', 'table2.id')
->select('table1.id','table2.logo','table1.col2','table1.col3')
->whereIn(....)
->whereIn(....);

效果很好。我想添加的额外内容是:如果 table1 的 col2 值为 0 那么我想获取 table1.col3 的值但是当表 1 的 col2 值为 1 时,我想从另一个表中选择。

类似IF table1.col2 = 0 returned_value = table1.col3 ELSE returned_value = (SELECT other_value FROM table3 WHERE CONDITION)

最佳答案

使用这个:

->selectRaw('IF(table1.col2 = 0, table1.col3,
(SELECT other_value FROM table3 WHERE CONDITION)) AS ...')

关于php - Laravel if then 条件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49895105/

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