In MS SQL-Server, I can do:
SELECT ISNULL(Field,'Empty') from Table
But in PostgreSQL I get a syntax error. How do I emulate the ISNULL() functionality ?
|
In MS SQL-Server, I can do:
But in PostgreSQL I get a syntax error. How do I emulate the |
||||
Or more idiomatic:
|
|||||||||||||||||||
|
|
Use COALESCE() instead. SELECT COALESCE(Field,'Empty') from Table; It functions much like ISNULL, although provides more functionality. Coalesce will return the first non null value in the list. Thus: SELECT COALESCE(null, null, 5); returns 5, while SELECT COALESCE(null, 2, 5); returns 2 Coalesce will take a large number of arguments. There is no documented maximum. I tested it will 100 arguments and it succeeded. This should be plenty for the vast majority of situations. |
|||
|
|
|
Create the following function
And it'll work. You may to create different versions with different parameter types. |
|||||
|
SELECT (Field IS NULL) FROM ... |
|||||
|
ISNULLtakes two arguments and returns the second is the first isnull, otherwise the first. – GSerg Feb 6 '10 at 20:40