136k views
4 votes
In an SQL query, which SQL keyword is used to specify the condition(s) for a join operation?

a) FROM
b) HAVING
c) JOIN
d) SELECT
e) WHERE

1 Answer

4 votes

Final answer:

The JOIN keyword is used to specify the condition(s) for a join operation in an SQL query.

Step-by-step explanation:

In an SQL query, the JOIN keyword is used to specify the condition(s) for a join operation. The JOIN keyword is used to combine rows from two or more tables based on a related column between them. It allows you to retrieve data from multiple tables based on a specific condition.

User John E Harriss
by
7.1k points