mysql 查找和替换

发布于 2024-12-03 19:50:20 字数 196 浏览 0 评论 0原文

我正在尝试替换一堆非 UTF-8 字符

即/ –

这是我的查询:

SELECT * FROM `tbl_act` WHERE `actDesc` LIKE '%’%' -

如何用字符“\”将其形成“查找和替换”???

I'm trying to replace a bunch of no UTF-8 characters

ie/ ’

Here's my query:

SELECT * FROM `tbl_act` WHERE `actDesc` LIKE '%’%' -

How can I form this to 'Find And Replace' with the characters: "\'" ???

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

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

发布评论

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

评论(1

高速公鹿 2024-12-10 19:50:20
update [table_name] 
set [field_name]=replace([field_name],'[string_to_find]','[string_to_replace]');

引用自 http://www.mediacollege.com/computer/database/mysql /find-replace.html

update [table_name] 
set [field_name]=replace([field_name],'[string_to_find]','[string_to_replace]');

Referred from http://www.mediacollege.com/computer/database/mysql/find-replace.html

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