What does a NULL value represent in SQL?
- A An unknown value, so comparisons with = return unknown
- B Zero
- C An empty string
- D A missing row
Answer
An unknown value, so comparisons with = return unknown
IS NULL and IS NOT NULL are the correct tests. NULL also propagates through arithmetic, producing NULL results.





