EasyOutput prediction

SUM of a column

Given this table (order_items):

idquantity
13
27
32

What does this query return?

SELECT SUM(quantity) FROM order_items;

← → arrow keys to navigate

Sign in to save your progress.