gpt4 book ai didi

mysql - 将别名 Mysql 转换为 cakePHP find 语句

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

请帮我将此查询转换为 cakePHP find 语句 --

mysql> select auctions.id, auctions.price, products.target_price, (auctions.price / products.target_price) as target_ratio FROM auctions LEFT JOIN products ON auctions.product_id = products.id ORDER BY target_ratio DESC;

特别是,我很难让这部分工作:

 (auctions.price / products.target_price) as target_ratio

谢谢!

最佳答案

对于比率部分,您应该使用 Virtual Fields .
如果您的模型具有belongsTo 或hasOne 关系,则连接应该自动完成,否则您可以 join them manually .

关于mysql - 将别名 Mysql 转换为 cakePHP find 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4140575/

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