I'm working in oracle and I can't figure out what's wrong with this statement. The error it gives me is must name this expression with a column alias
CREATE TABLE shipping_costs_grouped AS
SELECT SUM(invoice_amt), SUM(entered_weight), SUM(billed_weight), SUM(net_amt), MAX(ZONE), pps_num
FROM shipping_costs GROUP BY pps_num;
I know it has something to do with the group by statement but I don't know how to resolve it