gpt4 book ai didi

MySql 逗号分隔值和使用 IN 选择数据

转载 作者:行者123 更新时间:2023-11-29 01:40:56 30 4
gpt4 key购买 nike

我将用户愿意将产品运送到的目的地存储在 varchar 字段中,如下所示:

"userId" "destinations" "product"
"1" "US,SE,DE" "apples"
"2" "US,SE" "books"
"3" "US" "mushrooms"
"1" "SE,DE" "figs"
"2" "UK" "Golf Balls"

我希望此查询能返回所有包含 US 的行。相反,它只返回一行。

select * from destinations where destinations IN('US');

我该如何做对?我使用了错误的列类型吗?还是我的查询失败了。

当前结果

US

预期结果

US,SE,DE
US,SE
US

最佳答案

尝试使用 FIND_IN_SET

select * from destinations where FIND_IN_SET('US',destinations);

关于MySql 逗号分隔值和使用 IN 选择数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22809512/

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