标签: string split group-concat
将group_concat函数中的字符串拆分为数组,以便在mysql中使用IN函数。但不要使用find_in_set。让我知道另一种方式。
答案 0 :(得分:0)
尽管find_in_set是最好的功能,但是如果你想尝试其他技术,那么试试这个:
SELECT * FROM `table_name` WHERE CONCAT(',', field_name, ',') LIKE '%,".(int)$value_to_find.",%'");