次のクエリは、recipecomments.RecipeID が表示されるたびにレコードを取得します。レシピ ID ごとに 1 つのレコードを取得したいのですが、レシピ ID によるグループ化は機能していないようです
SELECT recipecomments.RecipeID
,recipecomments.CommentID
,recipes.RecipeID
,recipes.Name
,recipes.CategoryID
,recipes.RatingTotal
,recipes.ImageMed
FROM recipecomments
JOIN recipes ON recipecomments.RecipeID = recipes.RecipeID
ORDER BY recipecomments.CommentID