gpt4 book ai didi

MySQL:修复插入数据库中引号内的数据

转载 作者:太空宇宙 更新时间:2023-11-03 12:02:25 24 4
gpt4 key购买 nike

我需要修复数据库中的一些(错误的)插入数据,我插入的数据是用单个引号插入的,例如:('love')

我想把它移到(爱),而不影响(我们),

信息表(结构)

id     text
1 'love'
2 'man'
3 we're..
4 John
5 'Sarah'

我想将“信息”表修复为:

信息表(结构)

id     text
1 love
2 man
3 we're..
4 John
5 Sarah

我可以使用以下方法选择此数据:

select * from info where text like "'%'"

谢谢,

最佳答案

试试这个未经测试的查询:

更新信息集 text = replace(text,"'","") where text like "'%'"

关于MySQL:修复插入数据库中引号内的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28579477/

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