SUM - Sum Aggregate1 / 10
SUM is an aggregate function which calculates the sum of a column. To find the sum of all order totals in the table, try:
SELECT SUM(order_total) FROM orders;Ctrl+Enter to submit
SELECT SUM(order_total) FROM orders;Ctrl+Enter to submit