@@ -18,7 +18,7 @@ For each table specified, you can optionally specify an alias.
SELECTu.*,p.*FROMUseruLEFTJOINu.Phonenumber
SELECTu.*,p.*FROMUseru,u.Phonenumberp
</code>
</code>
*//INNER JOIN// produces an intersection between two specified components (that is, each and every record in the first component is joined to each and every record in the second component).
Sobasically//INNER JOIN// can be used when you want to efficiently fetch for example all users which have one or more phonenumbers.