where condition in my sql check if the string not empty or null code example
Example: sql check for null and empty string
IF ISNULL(@param) OR @param = '' THEN doSomething...
IF ISNULL(@param) OR @param = '' THEN doSomething...