InterviewSolution
Saved Bookmarks
| 1. |
The ______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.(a) Where, from(b) From, select(c) Select, from(d) From, whereThe question was asked in homework.My question is taken from SQL Queries topic in portion SQL : Queries, Constraints and Triggers of Database Management |
|
Answer» RIGHT answer is (a) Where, from Explanation: Where SELECTS the rows on a particular CONDITION. From gives the RELATION which involves the OPERATION. |
|