任何人都可以在這裏看到錯誤。 PhpMyAdmin告訴我在where子句附近有一個錯誤。我無法弄清楚的sql錯誤
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'