Jump to content

poll display data


balkan7
Go to solution Solved by Barand,

Recommended Posts

Hi, i need help for get data from following tables:

 

questions:

id

question

 

options:

id

ques_id

value

 

votes:

id

option_id

voted_on

ip

 

Question: What is your favorite color.

Option1: Test 1  - 83 votes

Option2: Test 2 - 0 votes

Option3: Test 3 - 51 votes

 

I'm using this sql for result:

SELECT options.id, options.value, COUNT(*) as votes FROM votes, options WHERE votes.option_id=options.id AND votes.option_id IN(SELECT id FROM options WHERE ques_id=2) GROUP BY votes.option_id;

so i get this:

id   value   votes

1    Test1     83

3    Test3     51

 

because there is not votes for option Test2 and doesn't show it.

i need help to get all data like this:

 

id   value   votes

1    Test1     83

2    Test2      0

3    Test3     51

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.