Below is the data in the sample table named ‘DATA’. The question is how NULL performs in expressions.
The Question: What will be the result when the below query executed
Table: data
| COL1 | COL 2 | COL 3 |
| 1 | 2 | NULL |
SQL Query:
SELECT
col1 + col2, col2 + col3, col1 + col2 / col3
FROM data;
Q) What are the three possible values returned by the sample SQL query above?
- 3, NULL, 0
- 3, 2, 0
- 3, 2, 3
- 3, NULL, NULL
- 3, 2, NULL
The correct answer is ‘Choice 4’.






