MySQL,Oracle中空字符串和NULL
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL,Oracle中空字符串和NULL相关的知识,希望对你有一定的参考价值。
mysql 中空字符串和NULL是不一样的。
Oracle中空字符串就是NULL。
update User set realname =‘‘ where name = "ff"; -- 在Oracle中不起作用,只有NULL,没有空字符串。
update User set mobile = null where name = "ff"; --在Mysql中设置mobile为空。
update User set mobile = "" where name = "ff"; --在Mysql中设置mobile为空字符串。
以上是关于MySQL,Oracle中空字符串和NULL的主要内容,如果未能解决你的问题,请参考以下文章