我有兩張表,我想INNER JOIN
,我花了幾個小時,但我沒有運氣。如果有人能提供幫助,我會很高興。如何在CakePHP模型中使用內連接
我的第一個表:properties
id | room | price | location_id
我的第二個表是:locations
id | country | province | district
注:location_id
在Properties
是 '身份證' 在Location
我想使用basi c模型關聯如hasOne
,belongsTo
等。
我應該在模型中放入什麼,以便基本得到以下結果?
SELECT
Property.room,
Property.price,
Location.province
FROM
properties AS Property
INNER JOIN locations AS Location ON Property.location_id = Location.id
在此先感謝!
顯示您的模型定義 –