Re: Percentage of Total Occurances

Поиск
Список
Период
Сортировка
От Adam Sherman
Тема Re: Percentage of Total Occurances
Дата
Msg-id 30270000.1050433172@saturn
обсуждение исходный текст
Ответ на Re: Percentage of Total Occurances  (<mallah@trade-india.com>)
Ответы Re: Percentage of Total Occurances  (<mallah@trade-india.com>)
Список pgsql-sql
On 04/15/03 22:40:37 +0530 mallah@trade-india.com wrote:

>> I have a table being used for poll results:
>>
>> id
>> poll_id
>> question_id
>> answer_id
>> datestamp
>>
>> I what to figure out the percentage or respondants that gave each
>> answer.  This is based on occurance rather than values.
>
> select answer_id,count(*) from polls where poll_id = ?
> group by answer_id ;
>
> gives number of response of each answer
>
> total_response = select count(*) from polls where poll_id = ?
>
> getting %age shud be trivial.
>
> Dunno if i missed your question .

I'm looking to do everything in a single query.

And get something like:

answer_id -> percentage

Thanks,

A.

--
Adam Sherman
Tritus CG Inc.
http://www.tritus.ca/
+1 (613) 797-6819



В списке pgsql-sql по дате отправления:

Предыдущее
От: Guy Fraser
Дата:
Сообщение: What is the scope of a temp table?
Следующее
От: Fernando Eduardo Carvalho
Дата:
Сообщение: plpgsql slow in 7.3 ????