Login
Remember
Register
Ask a Question
Define join and name different types of joins in SQL?
0
votes
asked
Jul 8, 2020
in
Sql
by
Robindeniel
Define join and name different types of joins?
#sql-joins
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 8, 2020
by
SakshiSharma
Join keyword is used to fetch data from two or more related tables. It returns rows where there is at least one match in both the tables included in the join. Read more here.
Type of joins are:
Right join
Outer join
Full join
Cross join
Self join.
...