The sales table has columns PROD_ID and QUANTITY_SOLD of data type number.
Which two queries execute successfully? (Choose two.)
The sales table has columns PROD_ID and QUANTITY_SOLD of data type number.
Which two queries execute successfully? (Choose two.)
Two queries execute successfully. One query is to count the number of prod_id from the sales table where the quantity_sold is greater than 55000, grouping the results by prod_id. The other query selects prod_id from the sales table where quantity_sold is greater than 55000, grouping by prod_id and including only those groups having a count greater than 10. These queries are syntactically correct and logically structured for the given scenario.
I AGREE AD
A D is correct