Home » MYSQL » Using Join » Question
  1. The join in which all the rows from the right table appear in the output irrespective of the content of the other table is ___________.
    1. RIGHT JOIN
    2. INNER JOIN
    3. CROSS JOIN
    4. CARTESIAN JOIN
    5. None of these
Correct Option: A

In a ‘RIGHT JOIN’, the output is produced for every row of the right table, even if it does not exist in the other table. This is the reason why it is called a ‘RIGHT JOIN’. ‘RIGHT JOIN’ and ‘LEFT JOIN’ are a kind of OUTER JOIN.



Your comments will be displayed only after manual approval.