Add criteria to this query to return only the records where the value in the Credits field is less than 90 and the value in the Classification field is Jr or Sr. Run the query to view the results.

Respuesta :

In the given case the query is

  • Click the Credits field's criteria row, type ">90".
  • Click the Classification field's criteria row, type "Sr".
  • On the Design tab, in the Results group, click the Run button.

How does this occur?

  • Through the process of executing a query, the relational database relies on itself to quickly retrieve and evaluate your data. Any query's SQL code can be viewed by switching to design view.
  • Simply described, queries are methods for finding and combining data from one or more tables.
  • It allows one to access data from one or more tables in accordance with a set of explicit search criteria.

Discover more about Query from

brainly.com/question/21734212

#SPJ1