gpt4 book ai didi

cakephp - 如何在 CakePHP 模型中使用内连接

转载 作者:行者123 更新时间:2023-12-02 10:09:59 24 4
gpt4 key购买 nike

我有两个表想要INNER JOIN,我花了几个小时但没有运气。如果有人能提供帮助,我将非常高兴。

我的第一个表:属性

id |房间|价格| location_id

我的第二个表是:位置

id |国家 |省|区

注意:Properties 中的 location_idLocation 中的“id”

我想使用基本的模型关联,例如 hasOnebelongsTo 等。

我应该在模型中添加什么才能基本上得到以下结果?

SELECT
Property.room,
Property.price,
Location.province
FROM
properties AS Property
INNER JOIN locations AS Location ON Property.location_id = Location.id

提前致谢!

最佳答案

以下模型关系将生成您需要的查询。

class Property extends AppModel {

public $belongsTo = array(
'Location' => array(
'type' => 'INNER'
)
);

}

了解更多关于model associations的信息

关于cakephp - 如何在 CakePHP 模型中使用内连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21999394/

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