任何人都可以在这里看到错误。PhpMyAdmin 告诉我 where 子句附近有一个错误。
SELECT product.*, category.*,store.*
WHERE
store.store_id = product.store_id AND
category.category_id = product.category_id
INNER JOIN store ON store.store_name = 'mens'
INNER JOIN category ON category.category_name = 'rings'