在 Google 和 Stack Overflow 上环顾四周,也许我只是瞎了眼。有没有办法用“”(空)值更新表格单元格。比方说:
mysql_query("UPDATE table SET cellname = ' ' WHERE id = '$idneeded'");
非常感谢任何帮助。
您应该知道空字符串''
与空格字符串' '
不同,并且与 NULL 值不同。
将单元格值更新为空字符串:
mysql_query("UPDATE table SET cellname = '' WHERE id = '$idneeded'");
UPDATE table SET cellname = ' ' WHERE id = '$idneeded'
^^^---not empty. spaces are not "empty".
尝试
cellname=''
或者
cellname=NULL
反而。