Difference between NULL and Blank Value in Mysql

前端 未结 4 1569
轮回少年
轮回少年 2020-12-17 00:16

I have to check for a value of a particular Column named RESULT is blank or not.

When I check with if RESULT IS NULL, the query failed, bu

4条回答
  •  -上瘾入骨i
    2020-12-17 00:40

    NULL in database systems - No value set for the field. A void

    NULL (character) - A blank, an ASCII/Unicode character with no graphical representation. But it is present in code page as a character constant '\0' with a character value 0 or 000.

提交回复
热议问题