2

在 Google 和 Stack Overflow 上环顾四周,也许我只是瞎了眼。有没有办法用“”(空)值更新表格单元格。比方说:

mysql_query("UPDATE table SET cellname = ' ' WHERE id = '$idneeded'");

非常感谢任何帮助。

4

2 回答 2

4

您应该知道空字符串''与空格字符串' '不同,并且与 NULL 值不同。

将单元格值更新为空字符串:

mysql_query("UPDATE table SET cellname = '' WHERE id = '$idneeded'");
于 2012-10-22T15:45:49.857 回答
2
UPDATE table SET cellname = ' ' WHERE id = '$idneeded'
                            ^^^---not empty. spaces are not "empty".

尝试

cellname=''

或者

cellname=NULL

反而。

于 2012-10-22T15:45:30.777 回答