SyntaxFix
Write A Post
Hire A Developer
Questions
If there is not ISNULL() method, you can use this expression instead:
ISNULL()
CASE WHEN fieldname IS NULL THEN 0 ELSE fieldname END
This works the same as ISNULL(fieldname, 0).
ISNULL(fieldname, 0)