Site: DataLemur
Difficulty per Site: Easy
You're trying to find the mean number of items per order on Alibaba, rounded to 1 decimal place using tables which includes information on the count of items in each order (item_count
table) and the corresponding number of orders for each item count (order_occurrences
table). [Full Description]
-- Submitted Solution
SELECT
ROUND(SUM(item_count::decimal * order_occurrences) / SUM(order_occurrences), 1) AS mean
FROM items_per_order
;
-- DataLemur Solution
-- Site solution is essentially the same.
TODO
TBD