Re: Using AND in query

Поиск
Список
Период
Сортировка
От Alban Hertroys
Тема Re: Using AND in query
Дата
Msg-id 46145F14-AB33-48DF-8E95-2290AC366E5F@solfertje.student.utwente.nl
обсуждение исходный текст
Ответ на Re: Using AND in query  (Thomas Kellerer <spam_eater@gmx.net>)
Ответы Re: Using AND in query  (Thomas Kellerer <spam_eater@gmx.net>)
Список pgsql-general
On 7 Aug 2010, at 23:18, Thomas Kellerer wrote:

> Or as an alternative:
>
> SELECT tid, purchase_date
> FROM orders
> WHERE item in ('Laptop', 'Desktop')
> GROUP BY tid, purchase_date
> HAVING count(*) = 2


This one is incorrect, it will also find people who bought two laptops or two desktops on the same date.

I was going to suggest:

SELECT tid, "date", 001::bit as type
  FROM orders
 WHERE item = 'Laptop'
UNION ALL
SELECT tid, "date", 010::bit as type
  FROM orders
 WHERE item = 'Desktop'
GROUP BY tid, "date"
HAVING type & 011::bit = 011::bit;

But I think David's solution is more readable, as it leaves the item names in tact.

Alban Hertroys

--
If you can't see the forest for the trees,
cut the trees and you'll see there is no forest.


!DSPAM:737,4c5e6ee4286211665369939!



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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: Howto only select secific lines from a result?
Следующее
От: John R Pierce
Дата:
Сообщение: Re: Using AND in query