したがって、以下のこのコードは次のとおりです。
$friends = $this->find('all',
array(
'conditions' => array(
'User.id' => 102
),
'contain' => 'Profile'
)
);
このSQLを生成します:
SELECT `User`.`id`, `User`.`sForceId`, `User`.`householdId`,
`User`.`householdSForceId`, `User`.`username`, `User`.`primaryUser`, `User`.`password`,
`User`.`firstName`, `User`.`lastName`, `User`.`dateOfBirth`, `User`.`email`,
`User`.`preferredEmail`, `User`.`phone`, `User`.`preferredPhone`, `User`.`homePhone`,
`User`.`workPhone`, `User`.`mobilePhone`, `User`.`ethnicity`, `User`.`ethnicityOther`,
`User`.`religion`, `User`.`religionOther`, `User`.`active`, `User`.`adminStatus`,
`User`.`group`, `User`.`created`, `User`.`modified`, `Profile`.`id`,
`Profile`.`userId`, `Profile`.`aboutMe`, `Profile`.`picture`, `Profile`.`created`,
`Profile`.`modified`, `Profile`.`lat`, `Profile`.`lng` FROM `users` AS `User` LEFT JOIN
`profiles` AS `Profile` ON (`Profile`.`userId` = `User`.`id`) WHERE `User`.`id` = (102)
(あなたの脳を傷つける読書の場合はお詫びします)
このSQLコードは、同じレコードを3回選択します。理由はわかりません。どうしたの?さらに重要なことに、CakePHPコードを変更して、そのレコードを3回ではなく1回選択するにはどうすればよいですか?
役立つ場合:ユーザーbelongsToHouseholdおよびhasOneProfile。