16.6k views
3 votes
What criteria should be added to the MinOrders query to select only records where the MinOrder field is greater than or equal to $20,000?

A) MinOrders >= 20000

B) MinOrders <= 2000

C) MinOrders > 2000

D) MinOrders < 20000

User Viewed
by
8.1k points

1 Answer

4 votes

Final answer:

The correct criteria to add to the MinOrders query to select records where the MinOrder field is greater than or equal to $20,000 is A) MinOrders >= 20000.

Step-by-step explanation:

To select only records where the MinOrder field is greater than or equal to $20,000, the correct criteria to add to the MinOrders query is: A) MinOrders >= 20000. This criteria specifies that only records with a MinOrder value of $20,000 or higher will be selected.

User Pbathala
by
7.7k points