简体   繁体   中英

How do I join a table to itself multiple times in Propel?

I tried the solution in this answer , but it did not work. It resulted in the following SQL:

SELECT user.id AS `Id`, user.name AS `Name`,
  AS `ReferralUser.Id`,  AS `ReferralUser.Name`
FROM `ReferralUser` INNER JOIN `account` ON (ReferralUser.id=account.id)

Note that ReferralUser is not a table in my database, it was meant to be the alias.

I need to join a table to itself at least two times, but possibly more in the future. My current code:

$q = \UserQuery::create();
$q->select(array('Id', 'Name', 
    'ReferralUserRelation.Id', 'ReferralUserRelation.Name', 
    'CreatorUserRelation.Id', 'CreatorUserRelation.Name'));

$q->join('ReferralUserRelation');
$q->join('CreatorUserRelation');

$q->find();

Which results in the following SQL:

SELECT user.id AS `Id`, user.name AS `Name`, user.id AS `ReferralUserRelation.Id`, 
user.name AS `ReferralUserRelation.Name`, `user.id` AS `CreatorUserRelation.Id`, 
`user.name` AS `CreatorUserRelation.Name` FROM `user`  
INNER JOIN `user` ON (user.id=user.referral_user_id) 
INNER JOIN `user` ON (user.id=user.creator_user_id) 

Is this even possible in Propel?

I recommend using table aliases and the ActiveQuery API (see http://propelorm.org/reference/model-criteria.html#table-aliases ). For instance, if the User table has a Supervisor relationship to itself:

// Table aliases are mostly useful to join the current table,
// or to handle multiple foreign keys on the same column
$employee = EmployeeQuery::create('e')
  ->innerJoin('e.Supervisor s')
  ->where('s.Name = ?', 'John')
  ->find();

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM