0
Drag and drop from the options below to complete the statement, which selects ''name'' and minimum of the "cost'' from ''items''
SELECT name, (cost) FROM items WHERE name '%boxes of frogs' AND seller_id (68, 6, 18) AVG IN LIKE NOT MIN BETWEEN
5 Answers
+ 2
You can use-
MIN(cost)
LIKE '%boxes of frogs'
seller_id IN(68,6,18)
+ 1
Please answer,
0
Drag and drop from the options below to select all items from the ''items'' table for which the cost is greater than the average of costs. Use a subquery to calculate the average cost.
SELECT * FROM items
WHERE cost >
(SELECT AVG(cost)
FROM items)
- 2
Drag and drop from the options below to select all items from the ''items'' table for which the cost is greater than the average of costs. Use a subquery to calculate the average cost.
SELECT * FROM items
cost >
(SELECT (cost)
FROM )
items AVG SUM WHERE IN COST
- 2
Drag and drop from the options below to select all items from the ''items'' table for which the cost is greater than the average of costs. Use a subquery to calculate the average cost.
SELECT * FROM items
cost >
(SELECT (cost)
FROM )