Answers for "sql if null then string"

SQL
2

sql if null then string

COALESCE(column, 'Unknown')
Posted by: Guest on March-08-2022
-2

sql check for null and empty string

IF ISNULL(@param) OR @param = '' THEN doSomething...
Posted by: Guest on August-19-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language