gpt4 book ai didi

mysql - 如何根据列中的逗号分隔值进行选择

转载 作者:行者123 更新时间:2023-11-29 09:55:10 25 4
gpt4 key购买 nike

在我的表中,其中一列具有逗号分隔值。我想根据在该列中找到的一个或两个值来选择条目,例如

select * from table where tags contains ('ec2' or 'associate')

或包含多个值

select * from table where tags contains 's3' and 'rds'

什么是正确的查询?

enter image description here

最佳答案

您可以使用内置的find_in_set功能。

find_in_set('s3',tags) > 0 and find_in_set('rds',tags) > 0

关于mysql - 如何根据列中的逗号分隔值进行选择,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53974218/

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