EASY·Output prediction

Given this table (order_items): | id | quantity | |----|----------| | 1 | 3 | | 2 | 7 | | 3 | 2 | What does this query return?

SELECT SUM(quantity) FROM order_items;

Sign in to save your progress.