Change Password

Explain the difference between INNER JOIN and LEFT JOIN in SQL.
They are synonymous and can be used interchangeably
INNER JOIN returns only matching rows, while LEFT JOIN returns all rows from the left table and matching rows from the right table
LEFT JOIN returns only matching rows, while INNER JOIN returns all rows from the left table and matching rows from the right table
INNER JOIN is used for numeric data, while LEFT JOIN is used for text data