Viewing my result set, I see a blank field despite my conditions.
I tried selecting:
SELECT column
FROM table
WHERE LENGTH(column) > 0 AND column IS NOT NULL
i also tried:
WHERE LENGTH(column) <> 0 AND column IS NOT NULL
but, I'm still seeing a blank field.
In my SELECT, I tried checking the contents of the field:
SELECT column, LENGTH(column), HEX(column)
etc...
But, they both come up as 0 and seemingly empty, respectively.
What did I miss here?