QuestenaPractice that shows what to review next
Question 7

In PostgreSQL 18, what does SELECT coalesce(1, 1/0); return?

  1. NULL
  2. It raises a division-by-zero error
  3. 1Correct answer
  4. 0

Explanation

coalesce is not an ordinary function: like a CASE expression it evaluates only the arguments needed to determine the result, so once the first argument is known to be non-null, 1/0 is never evaluated. Expecting an error assumes the usual rule that all arguments of a function call are evaluated first.

Continue with this test

Start practice