1
0
mirror of synced 2024-12-13 22:56:04 +03:00
doctrine2/manual/docs/Working with objects - Component overview - Query - Relation operators.php
2007-02-23 20:54:10 +00:00

8 lines
497 B
PHP

Doctrine provides two relation operators: '.' aka dot and ':' aka colon.
<br \><br \>
The dot-operator is used for SQL LEFT JOINs and the colon-operator is used
for SQL INNER JOINs. Basically you should use dot operator if you want for example
to select all users and their phonenumbers AND it doesn't matter if the users actually have any phonenumbers.
<br \><br \>
On the other hand if you want to select only the users which actually have phonenumbers you should use the colon-operator.