标签: mysql sql null concat
我的表:
table1 first last full Joe Smith NULL John Doe NULL
我的查询:
update table1 set full = concat(first, " ", last)
它没有做任何事情 - 立即说0行受影响,耗时33.2毫秒。然后我将列的默认值从NULL更改为no和poof,甚至没有再次运行查询,列中出现了全名。问题解决了。但任何人都可以说出原因吗?我迷路了。
答案 0 :(得分:0)
CONCAT() returns NULL if any argument is NULL.