update ceshi set qita=replace(qita,'4','9')//将qita字段里4替换成9 这是成功的
update ceshi set qita=replace(qita,'','9')//将qita字段里''空字符替换成9 这是失败的
select (CASE when (qita IS NULL OR qita='') then '9' else qita end) as qita from ceshi//这个还是不行
mysql " 是空白,null才是空
直接update where不行吗?为什么要replace????