Question #150

Author: admin
tags: SQL  
Table "products":
id   category     price
1    furniture    20
2    NULL         10
3    furniture    10
4    NULL         30
5    books        20
SQL query:
SELECT count(category) FROM products;
What will be the result?
2
3
4
5
Rate the difficulty of the question:
easyhard