how to use the SQL Server RIGHT JOIN clause to query data from two tables.
Vishalini.R Answered question May 29, 2023
- The join is done by the JOIN operator.
- In the FROM clause, the name of the first table ( product ) is followed by a JOIN keyword then by the name of the second table ( category ).
- This is then followed by the keyword ON and by the condition for joining the rows from the different tables.
Shathana. S.R. Answered question May 29, 2023
