Best way to check for “empty or null value”
The expression stringexpression = ” yields: TRUE .. for ” (or for any string consisting of only spaces with the data type char(n)) NULL .. for NULL FALSE .. for anything else So to check for: “stringexpression is either NULL or empty”: (stringexpression = ”) IS NOT FALSE Or the reverse approach (may … Read more