Question : difference btw left join and right join with examples

difference btw left join and right join with examples

Answer : difference btw left join and right join with examples

The LEFT and RIGHT are just two different syntaxes for what is logically the same operation:

A LEFT OUTER JOIN B

means the same as

B RIGHT OUTER JOIN A

So the syntax is totally redundant and more confusing than it needs to be. I see the LEFT syntax used more often than the RIGHT and as a matter of personal preferance I always use LEFT in my own queries.
Random Solutions  
 
programming4us programming4us