Where clause

Поиск
Список
Период
Сортировка
От Michael Landin Hostbaek
Тема Where clause
Дата
Msg-id 20070626082405.GA67974@mich2.itxmarket.com
обсуждение исходный текст
Ответы Re: Where clause  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
Re: Where clause  ("news.gmane.org" <nis@superlativ.dk>)
Список pgsql-sql
Hello, 

I have a table called tracking, with a contactid varchar, click bool,
view bool and cid varchar.

I would like to put the following into one single query if possible:

// Number of clicks
select cid,count(distinct contactid) from tracking where click =
true group by cid; 

// Number of views
select cid,count(distinct contactid) from tracking where view =
true group by cid; 

I guess I have to put where (click = true or view = true) - and
differentiate them in the SELECT target.. ?


Many thanks for any input, 

Mike


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

Предыдущее
От: "Bart Degryse"
Дата:
Сообщение: Re: Transactions and Exceptions
Следующее
От: "A. Kretschmer"
Дата:
Сообщение: Re: Where clause