Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 mysql 中执行更新查询,其中匹配字符串的开头并将匹配的部分替换为另一个字符串?
我的问题的背景是我正在使用物化路径来构造我的分层数据,并且需要这种类型的查询来将一个节点及其所有子节点移动到另一个节点。
谢谢您的帮助!
尝试类似:
SELECT REPLACE(column, "search","replace") FROM table WHERE column LIKE "search%";
干杯!