Bosse
Bosse

Reputation: 11

Poll system multiple answers

If you would want to make a poll system that supports multiple answers (options) (not just yes/no) how would you do it? How would you structure the db etc?

I don't want to limit the answers/options.

Some input on this would be greatly appreciated.

Upvotes: 1

Views: 422

Answers (1)

BarsMonster
BarsMonster

Reputation: 6585

Here is what I used:

Pool table:

pool_id: int
pool_name: varchar
number_of_votes: int

Pool_question table:

question_id: int
pool_id: int
question: varchar
answer: varchar
question_selected_count: int

Upvotes: 2

Related Questions