MySQL 更新命令

发布于 2024-08-25 10:00:33 字数 167 浏览 6 评论 0原文

我需要向 mysql 表中的所有行添加特殊文本, 如何仅针对一个字段将一些文本添加到表中所有行内容的末尾

我使用了此代码:

UPDATE `blogs` SET `title`= `title` + 'mytext';

但对我不起作用

i need to add a special text to all rows in my mysql table ,
how to add some text to the end of all rows' content in a table just for one field

i used this code :

UPDATE `blogs` SET `title`= `title` + 'mytext';

but didnt work for me

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

怎言笑 2024-09-01 10:00:33

更新博客 SET title=concat(title, 'mytext');

UPDATE blogs SET title=concat(title, 'mytext');

两人的回忆 2024-09-01 10:00:33

MySQL 没有字符串连接运算符 (+)。您必须使用 concat()函数,正如 Daniel Schneller 在另一个答案中指出的

如果您在 MySQL 中尝试 SELECT '1' + '2';,它将返回 3+ 运算符只是一个加法运算符。您的查询将使用 0 更新标题字段。

MySQL does not have a string concatenation operator (+). You have to use the concat() function, as Daniel Schneller pointed out in the other answer.

If you try SELECT '1' + '2'; in MySQL, it would return 3. The + operator is simply an addition operator. Your query would have updated the title field with a 0.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文