View Full Version : NVL() equivelent in Access


Chunk
02-15-2005, 05:41 AM
In Oracle SQL, there is a function NVL() that allows you to test if something is null, and then if it is, replace it with a value of your choice.

I.e.

NVL(fieldOne, 0)

Is there an equivelent function in MS SQL, I have searched the internet, but cant find anything.

Rich
02-15-2005, 05:44 AM
Look up the Nz Function

Chunk
02-15-2005, 05:54 AM
Look up the Nz Function

Great. Just what I was after. Thanks.