InterviewSolution
Saved Bookmarks
| 1. |
The clause that filters JOIN results is called _________(a) WHERE(b) SORT(c) GROUP(d) GROUP BY |
|
Answer» Correct answer is (a) WHERE To elaborate: Sometimes the result of a join is very large and is not desirable. In these cases, the results can be filtered with the help of the ‘WHERE’ clause which is followed by a set of condition(s). |
|