exclude part of result - Mailing list pgsql-sql

From Tarlika Elisabeth Schmitz
Subject exclude part of result
Date
Msg-id 20080627003538.2d0132ce@dick.coachhouse
Whole thread Raw
Responses Re: exclude part of result  ("A. Kretschmer" <andreas.kretschmer@schollglas.com>)
Re: exclude part of result  (Lennin Caro <lennin.caro@yahoo.com>)
List pgsql-sql
SELECT DISTINCT a, b, c, now(), count(item_pk) 
FROM product
LEFT JOIN item ON item.product_fk = product_pk
WHERE ...
GROUP BY a, b, c


I have another table 'navigation' which also has the columns a,b,c

If the combination of (a,b,c) exists in 'navigation', then exclude it
from above result. How can I achieve this?

--


Best Regards,

Tarlika Elisabeth Schmitz


A: Because it breaks the logical sequence of discussion
Q: Why is top posting bad? 


pgsql-sql by date:

Previous
From: Montaseri
Date:
Subject: Re: ANSI Standard
Next
From: "A. Kretschmer"
Date:
Subject: Re: exclude part of result