Reputation: 466
I am using inner join, left outer join, right outer join and full join in SQL. is there have any other type of join in SQL?
Upvotes: 1
Views: 1463
Reputation: 1790
There are various types of "joins" but some of them are the same type with just different names. http://en.wikipedia.org/wiki/Join_%28SQL%29
Upvotes: 2
Reputation: 499212
There is also the cross join and self join.
The wikipedia article on joins is quite good.
Upvotes: 2