Examine the ORDER_ITEMS table:
Which two queries return rows where QUANTITY is a multiple of ten? (Choose two.)
Examine the ORDER_ITEMS table:
Which two queries return rows where QUANTITY is a multiple of ten? (Choose two.)
To find rows where QUANTITY is a multiple of ten, we can use mathematical functions to determine this. The query in option C uses the FLOOR and TRUNC functions to verify that dividing QUANTITY by 10 results in an integer, which is accurate for multiples of ten. Similarly, the query in option D compares QUANTITY with the truncated value of QUANTITY at the tens place, which will only be true if QUANTITY is a multiple of ten. Therefore, options C and D are correct.
B has a typo , should be = 0
BD is correct
D is correct for sure, I think that B has a typo.
C, D IS CORRECT
C is wrong, it just returns all rows.