Question:

What is the result of the following arithmetic operation in SQL: SELECT 5 + NULL AS RESULT?

Updated On: Mar 28, 2025
  • 5
  • NULL
  • 0
  • 5NULL
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

The result of the arithmetic operation 5 + NULL in SQL is NULL.

Additional Context:

  • NULL Handling in SQL:
    • Any arithmetic operation with NULL yields NULL
    • NULL represents unknown/missing data
    • Follows three-valued logic (TRUE, FALSE, UNKNOWN)
  • Example Scenarios:
    • 5 + NULL → NULL
    • NULL * 10 → NULL
    • 100 / NULL → NULL
  • Practical Implications:
    • Use IS NULL/IS NOT NULL for checks
    • COALESCE() or ISNULL() to handle NULLs
  • Database Standards:
    • Behavior consistent across MySQL, PostgreSQL, SQL Server
    • ANSI SQL specification requirement

Correct Answer: (2) NULL.

Was this answer helpful?
0
0