gpt4 book ai didi

php - sql查询去除随机字符

转载 作者:行者123 更新时间:2023-11-29 14:05:16 27 4
gpt4 key购买 nike

在我的数据库中,我有很多书,我有信息,但是这些书的 isbn-10 条目被搞乱了,因为我忘记在它们第一次输入数据库时​​去掉它们的“-”,所以对于在字段 description 中的示例我可能有这样的条目,

ISBN10: 0-470-945-176
by Paul D. Kimmel
Publisher: John Wiley & Sons
Copyright year: © 2011

但是我的大部分数据都是这样的

ISBN10: 0470945176
by Paul D. Kimmel
Publisher: John Wiley & Sons
Copyright year: © 2011

我应该使用什么mysql查询从描述中删除“-”,以便我的数据像第二个示例一样正确格式化?

最佳答案

使用MySQL REPLACE字符串函数。

UPDATE books SET description = REPLACE(description, '-', '');

关于php - sql查询去除随机字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14468475/

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