items table(the users will select and store into mysql
itemID | name | item
1 | Mary | pants, jeans
2 | John | jacket, shirt
3 | Jack | jacket, shirt
description table
descID | item
1 | jacket, shirt
2 | pants, jeans
3 | dress, jeans
comment table (retrieve the no of comments made)
commentId| item | comment
1 | jacket | great
2 | jacket | nice
3 | jeans | comfortable
ジョンがログインしたコメント テーブルの例からコメント数を取得するにはどうすればよいですか。2 を取得する必要があります。
これまでのところ、次の SQL ステートメントがあります。
SELECT DISTINCT(COUNT(comment)) AS comment
FROM comment co
INNER JOIN item i
WHERE co.item = i.item;