Hi Doug & Greg.

The query example didn't work for me. It always returned the count as 1 :(

I've made up some example data to show you want I'm trying to achieve:

polls:
| pollID | Question | active |
------------------------------
|   1    | Red fav  |   1    |
|   2    |like pets |   1    |

pollAnswers:
| answerID | pollID | answer |
------------------------------
|    1     |   1    |  Yes   |
|    2     |   1    |  Yes   |
|    3     |   1    |  No    |
|    4     |   1    |  Yes   |
|    5     |   1    |  Maybe |
|    6     |   1    |  No    |
|    7     |   2    |  Dogs  |

OUTPUT

| Question | Answer | Count |
-----------------------------
| Red Fav  |  Yes   |   3   |
| Red Fav  |  No    |   2   |
| Red Fav  |  Maybe |   1   |
|like pets |  Dogs  |   1   |

I tried grouping the data from the poll table and then used this in the select:
COUNT(DISTINCT PR.questionAnswer) as answerCount
,MIN(PR.questionAnswer) as questionAnswer

But that hust returned the number of different answers. I'm looking into some 
kind of sql loop but that's all new territory and I'm not sure if that's the 
right direction

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Upgrade to Adobe ColdFusion MX7 
Experience Flex 2 & MX7 integration & create powerful cross-platform RIAs 
http:http://ad.doubleclick.net/clk;56760587;14748456;a?http://www.adobe.com/products/coldfusion/flex2/?sdid=LVNU

Archive: 
http://www.houseoffusion.com/groups/CF-Talk/message.cfm/messageid:266973
Subscription: http://www.houseoffusion.com/groups/CF-Talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to