我有两张桌子:
product_list :
id_list | name_product | price |
1 | test01 | 20 |
10 | test02 | 50 |
people :
people_id | people_use_product | people_list
35 | test01 | 1
36 | test02 | 1
他们可以访问列表 id 1 和 10。但同一产品可以在两行中。(因为该列表可用于许多列表人员)。我只需要得到一排。(=产品的价格)
SELECT * FROM people
INNER JOIN product_list ON (id_list=1 or id_list=10)
WHERE people_list = 1
LIMIT 0,100
我怎么能只有一排?