gpt4 book ai didi

推进 ORM : Order By FIELD

转载 作者:行者123 更新时间:2023-12-01 06:52:00 25 4
gpt4 key购买 nike

我正在尝试使用 Propel 1.6 使用自定义“order by”进行查询

select * from myObject ORDER BY FIELD(id, 3, 11, 7, 1)

这不起作用:
myObjectQuery::create()
->orderById($someIds)
->find()

我能怎么做?

最佳答案

$ids = array(3, 11, 7, 1);

$cids = implode(',', $ids);

myObjectQuery::create()
->addAscendingOrderByColumn("FIELD (tableName.id, {$cids})")
->find()

关于推进 ORM : Order By FIELD,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34036279/

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