In a SQL JOIN operation, which keyword is commonly used to specify the type of join (e.g., INNER JOIN, LEFT JOIN)?

  • COMBINE
  • CONNECT
  • JOIN
  • MERGE
The keyword commonly used to specify the type of join in a SQL JOIN operation is "JOIN" itself. For example, INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN are different types of joins that specify how rows from different tables are combined based on the join condition.
Add your answer
Loading...

Leave a comment

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