如何匹配列中的CSV值

时间:2011-12-10 13:51:36

标签: php mysql csv

我的mysql表名产品。

如何获取此表的数据。

表shema

id| catid |subcatid
-----------------
1 | 5     | 2,3,5


SELECT * FROM products where subcatid=2

不正确

如何写出正确的sql。

1 个答案:

答案 0 :(得分:4)

SELECT * FROM products where find_in_set(2,subcatid)

考虑规范化你的表格