vote up 2 vote down star

In T-SQL, you can do this:

SELECT ProductId, COALESCE(Price, 0)
FROM Products

How do you do the same thing in Access SQL? I see examples for doing it with Nz in VBA, but I'm looking for the SQL equivalent.

Thanks.

flag

3 Answers

vote up 4 vote down check

Jet (the database engine behind Access) SQL also supports the Nz function. Note though that Nz is the same as the T-SQL ISNULL function. It can not take an arbitary number of parameters like COALESCE can.

link|flag
2  
"Jet (the database engine behind Access) SQL also supports the Nz function" - Incorrect, Jet has no NZ() function. The MS Access object model has a NZ() function which can be used in queries only within the MS Access interface. Using NZ() outside of the MS Access interface causes an error. – onedaywhen Jan 2 '09 at 14:10
vote up 2 vote down

If it's in an Access query, you can try this:

"Price = IIf([Price] Is Null,0,[Price])"
link|flag
vote up 2 vote down

Looks like I can just use:

SELECT ProductId, Nz(Price, 0)
FROM Products

Seems to be working just fine.

link|flag
You do need to be careful about the resulting data type of the argument, as it doesn't always end up numeric when you expect it to. I've never quite figured out a pattern of why, though theoretically, it's supposed to pick up the data type of the first argument. – David W. Fenton Oct 30 '08 at 4:02

Your Answer

Get an OpenID
or

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