根据我的问题标题,我有这样的 Access 数据库结构:
类别
categoryid categoryname
1 one
2 two
3 three
产品表:
productid productname categories
1 one 1,2,3
2 two 3
3 three 1,2
当我的 categoryid 为 1 时,我不知道选择产品的方式有多个类别。因为当我使用In运算符时,我遇到了一些错误..
Select * from product where categories In (categodyid) because cannot compare a collection with one value.
我被困在这里!请帮我!谢谢。