Difference between MySQL IS NOT NULL and != ''
Posted
by Mithun P
on Stack Overflow
See other posts from Stack Overflow
or by Mithun P
Published on 2010-06-17T07:51:47Z
Indexed on
2010/06/17
8:03 UTC
Read the original article
Hit count: 163
Is there any difference between MySQL
IF (myText IS NOT NULL) THEN
and
IF (myText != '') THEN
© Stack Overflow or respective owner