Re: exclude part of result

Поиск
Список
Период
Сортировка
От Tarlika Elisabeth Schmitz
Тема Re: exclude part of result
Дата
Msg-id 20080627122238.56cb6800@dick.coachhouse
обсуждение исходный текст
Ответ на Re: exclude part of result  (Harald Fuchs <hari.fuchs@gmail.com>)
Список pgsql-sql
On Fri, 27 Jun 2008 11:33:07 +0200
Harald Fuchs <hari.fuchs@gmail.com> wrote:

> In article <20080627075136.12add021@dick.coachhouse>,
> Tarlika Elisabeth Schmitz <postgresql@numerixtechnology.de> writes:
> 
> > PRODUCT table :
> 
> > A B C
> > 100 200 300
> > 100 200 301
> > 100 205 300
> > 100 205 301
> 
> > NAVIGATION table
> > A B C #ITEMS
> > 100 200 300 5
> > 100 200 301 6
> 
> > My query needs to return 
> > 100 205 300 #items
> > 100 205 301 #items
> > so I can insert them in NAVIGATION. NAVIGATION must not contain any
> > duplicate combinations of [a,b,c].
> 
> Just use another LEFT JOIN to filter out the corresponding product
> lines:
> 
> SELECT DISTINCT a, b, c, now(), count(item_pk) 
> FROM product
> LEFT JOIN navigation USING (a, b, c)
> LEFT JOIN item ON item.product_fk = product_pk
> WHERE navigation.a IS NULL
> GROUP BY a, b, c


Harald, Marc - thank you for your responses! That does the trick.

The USING construct was new to me. I notice from the manual that it is
is equivalent to ON (t1.a = t2.a AND t1.b = t2.b AND t1.c = t2.c).



My objective is to insert the missing a,b,c combinations into
NAVIGATION:
INSERT INTO navigation (a, b, c, save_time, item_no)
SELECT ...

I need to replicate the above for 
a,b,c + a,b + a:

NAVIGATION will really contain
100 - - 11
100 200 - 11
100 200 300 5
100 200 301 6


Some other questions spring to mind:
Which indices should I define? PRODUCT has a few thousand rows, ITEM
will grow over time, NAVIGATION will have a few hundred entries.







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

Предыдущее
От: "Marc Mamin"
Дата:
Сообщение: Re: exclude part of result
Следующее
От: Lennin Caro
Дата:
Сообщение: Re: exclude part of result