EasyOutput prediction

COUNT with WHERE

Given this table (orders):

idcustomerstatus
1Aliceshipped
2Bobpending
3Aliceshipped
4Alicepending

What does this query return?

SELECT COUNT(*) FROM orders WHERE customer = 'Alice' AND status = 'shipped';

← → arrow keys to navigate

Sign in to save your progress.