我的mysql表名产品。
怎样才能得到这个表的数据。
表shema

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


SELECT * FROM products where subcatid=2

不正确
如何编写正确的sql。

最佳答案

SELECT * FROM products where find_in_set(2,subcatid)

考虑将表规范化

10-06 13:32