117k views
8 votes
The ______ clause allows us to select only those rows in the result relation of the ____ clause that satisfy a specified predicate.

User Seybsen
by
7.1k points

1 Answer

3 votes

Answer:

1. Where,

2. From

Step-by-step explanation:

In SQL query language when working on a database, a user can use certain clauses to carry out some functions.

Hence, The WHERE clause allows us to select only those rows in the result relation of the FROM clause that satisfy a specified predicate.

This is because the "Where clause" selects the rows on a particular condition. While the "From clause" gives the relation which involves the operation.

User T Porter
by
7.7k points