gpt4 book ai didi

MySQL 在列搜索中选择

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

我有一个表,其中包含如下数据。我想获取类别列“2”中包含的行?我该如何设置查询?我需要它来更新行。类别列具有“文本”类型。

id  category
-------------------
13 -1-,
14 -2-,
15 -1-,-2-,-3-,-4-,
16 -2-,-4-,

更新后数据应该是这样的:

id  category
-------------------
13 -1-,
14 -5-,
15 -1-,-5-,-3-,-4-,
16 -5-,-4-,

最佳答案

像这样选择这些类别:

select * from your_table where category like '%-2-%'

但是您的示例看起来像是您想要将 2 替换为 5。可以这样完成:

update your_table set category = replace(category, '-2-', '-5-')

这样你就不需要 where 子句。

关于MySQL 在列搜索中选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10638143/

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