vote up 0 vote down star
1

first take, kludge solution, sentinel approach(it's imperative that your program should not allow inputting of sentinel value):

 select coalesce(a, -2147483648) = coalesce(b, -2147483648) as is_equal -- a little postgresism

let's say you forgot to block the sentinel value on your program, the user inputted -2147483648 on the B field, and A is null. the code above reports true, should report false, should not report true nor null.

what's the most concise way to compare equality on nullable fields? A == B should just report either true or false only, regardless if the field(s) are nullable or not.

flag

2 Answers

vote up 6 vote down check

Probably IS [NOT] DISTINCT FROM will help here.

link|flag
vote up 0 vote down

The operator <=> does what you want in other database engines; is it not in postgres? Otherwise, a is null and b is null or (a is not null and b is not null and a == b) should work. This works because FALSE AND NULL is FALSE.

link|flag
doesn't work on postgresql(or other rdbms for that matter). lucky mysql bastards for that operator :-p anyway, +1 just in case some mysqlers chance upon this problem – Hao Mar 25 at 9:28
At least with Oracle, the usual operators do NOT work as expected with null values... – Thilo Mar 25 at 9:29

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.