문제

how can I create a script to calculate the voting results for each option knowing that sometimes a question can have up to 4 options?

도움이 되었습니까?

해결책

Assuming that your tables are respectively named table1, table2 and table3, one can do:

SELECT   Question_ID, Option_ID, SUM(Vote)
FROM     table1 LEFT JOIN table2 USING (Option_ID)
GROUP BY Question_ID, Option_ID
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top