Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
だから私はしばらくこれに困惑しており、答えを見つけることができないようです.
これは私のデータベース図です
各質問ごとに分類された平均応答を表示するコマンドを見つけることになっています。これには本当に簡単な解決策があると確信していますが、考えすぎているか、明らかな何かを完全に見逃しているに違いありません。質問表には全部で 6 つの質問があります。
このようにしてみてください:
SELECT q.id, AVG(s.survey_response) FROM survey_questions q INNER JOIN survey_responses s ON q.id = s.survey_question_id GROUP BY q.id