0 votes
in Sql by
Which are joins in SQL? Name the most commonly used SQL joins?

1 Answer

0 votes
by

SQL joins are used to retrieve data from multiple tables into a meaningful result set. It is performed whenever you need to fetch records from two or more tables. They are used with SELECT statement and join conditions.

The following are the most commonly used joins in SQL:

INNER JOIN

LEFT OUTER JOIN

RIGHT OUTER JOIN

...