I'm doing some converting from Oracle to MSSQL and I was reading a guide by Oracle on B Supported SQL Syntax and Functions.
I noticed it was stated that there is a NOT NVL function (and its MSSQL equivalent was IS NOT NULL).
I'm compiling a list for my colleagues so we can have a one-stop resource for syntax and supported functions, am I correct in assuming that NOT NVL works like so:
There are 3 columns, name, location, loves_marmite
Andrew | UK | Yes
NOT NVL(loves_marmite, 'Nope')
So the data displayed would be:
Andrew | UK | Nope
I just don't get why it would be listed as an Oracle Function when it's just a logic issue, and what's more is that Oracle has IS NULL and IS NOT NULL.
I'm sorry I'm just looking for some clarification before I pass this document on to my colleagues.
EDIT : If possible would someone have a comprehensive list of function and syntax differences between the two platforms?