Craigoh1
Craigoh1

Reputation: 167

What is the function of the following SQL ISNULL statement

I have an ISNULL statement that I'm not sure how it would process.

ISNULL(a, ISNULL(a, m))

Is the inner ISNULL statement redundant and can I replace with the following?

ISNULL(a, m)

Thanks in advance, Craig

Upvotes: 1

Views: 83

Answers (1)

Kostya
Kostya

Reputation: 1605

You are correct. It is redundant.

Upvotes: 1

Related Questions