Exploration in Access II.
SELECT min(profit) as worst_deal
from orders
SELECT segment, round(sum(profit)) as total_profit_segment
from orders
group by segment
That's all for today.
SELECT min(profit) as worst_deal
from orders
SELECT segment, round(sum(profit)) as total_profit_segment
from orders
group by segment
That's all for today.