NULL
7 / 15
EasyOutput prediction

SUM with NULLs

Given this table (sales):

idamount
1100
2NULL
3200

What does this query return?

SELECT SUM(amount) FROM sales;

← → arrow keys to navigate

Sign in to save your progress.