103k views
0 votes
Which of the following statements correctly adds a criterion to the "ClientsByState" query in Design view to select only records where the State field value is TX?

A) SELECT * FROM ClientsByState WHERE State = 'TX';

B) FILTER ClientsByState BY State = 'TX';

C) QUERY ClientsByState WHERE State = 'TX';

D) ADD ClientsByState FILTER State = 'TX';

User Mari
by
8.3k points

1 Answer

3 votes

Final answer:

The correct statement to add a criterion to the "ClientsByState" query in Design view to select only records where the State field value is TX is: SELECT * FROM ClientsByState WHERE State = 'TX'.

Step-by-step explanation:

The correct statement to add a criterion to the "ClientsByState" query in Design view to select only records where the State field value is TX is:

A) SELECT * FROM ClientsByState WHERE State = 'TX';

This statement uses the SQL SELECT statement to select all fields (*) from the table ClientsByState, but only where the State field value is 'TX'.

User Jeffrey Kramer
by
7.8k points