gpt4 book ai didi

mysql - 在 MySQL 中使用单个 UPDATE 规范化字段

转载 作者:行者123 更新时间:2023-11-29 14:32:01 24 4
gpt4 key购买 nike

是否有任何方法可以使用单个查询执行更新以规范化字段?

示例:

UPDATE person SET name = REPLACE(name, 'á', 'a');
UPDATE person SET name = REPLACE(name, 'é', 'e');
UPDATE person SET name = REPLACE(name, 'í', 'i');
UPDATE person SET name = REPLACE(name, 'ó', 'o');
UPDATE person SET name = REPLACE(name, 'ú', 'u');

最佳答案

您可以链接替换调用,因此可以在单个查询中完成:

UPDATE person SET name = REPLACE(REPLACE(REPLACE(name, 'á', 'a'), 'é', 'e'), 'í', 'i')

但这很快就会变得难以维护。如果您只是想用非重音字符替换重音字符,也许更改字符集会更有用。

关于mysql - 在 MySQL 中使用单个 UPDATE 规范化字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9825307/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com