Which type of SQL clause is used to combine rows from two or more tables based on a related column?

  • GROUP BY clause
  • JOIN clause
  • ORDER BY clause
  • WHERE clause
The JOIN clause in SQL is specifically designed to combine rows from two or more tables based on a related column. It allows you to fetch related data from multiple tables in a single query, making it a fundamental aspect of database querying and analysis.
Add your answer
Loading...

Leave a comment

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