public Phalcon\Mvc\Model\Query\Builder innerJoin (string $model, [string $conditions], [string $alias])
Adds an INNER join to the query
1 2 3 4 5 6 7 8 | // Inner Join model 'Robots' with automatic conditions and alias $builder ->innerJoin( 'Robots' ); // Inner Join model 'Robots' specifing conditions $builder ->innerJoin( 'Robots' , 'Robots.id = RobotsParts.robots_id' ); // Inner Join model 'Robots' specifing conditions and alias $builder ->innerJoin( 'Robots' , 'r.id = RobotsParts.robots_id' , 'r' ); |
Please login to continue.