In a LEFT JOIN operation, which table's data is retained even if there are no matching rows in the other table?

  • Both tables
  • Left table
  • Neither table
  • Right table
In a LEFT JOIN, the data from the left table (first table in the JOIN statement) is retained, even if there are no matching rows in the right table. This ensures that all rows from the left table are included in the result set. 
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *