When coded in a WHERE clause, which of the following search conditions will not return a result set that includes all invoices with an invoice_total value of $1000 or less?
A. NOT (invoice_total > 1000)
B. invoice_total IN (0,1000)
C. invoice_total BETWEEN 0 AND 1000
D. invoice_total <= 1000
Answer: B. invoice_total IN (0,1000)
Computer Science & Information Technology
You might also like to view...
The Reading View is useful when making a presentation during a web conference
Indicate whether the statement is true or false
Computer Science & Information Technology
A select query is used to select records from one or more tables and use them to create a new table
Indicate whether the statement is true or false
Computer Science & Information Technology