Re: Grab data WHERE table.ID NOT LIKE otherTable.ID - Mailing list pgsql-general

From Mark G. Franz
Subject Re: Grab data WHERE table.ID NOT LIKE otherTable.ID
Date
Msg-id 01b101c10997$1189a6b0$6401a8c0@mgflaptop
Whole thread Raw
In response to Re: Grab data WHERE table.ID NOT LIKE otherTable.ID  (Stephan Szabo <sszabo@megazone23.bigpanda.com>)
List pgsql-general
Yup!  This is what I ended up using, (couldn't retract my email fast
enough...);

<% rs = st.executeQuery("SELECT DISTINCT CustomerID, Username, Password,
Email FROM Customer WHERE NOT EXISTS (SELECT  Registration.CustomerID WHERE
(Registration.CustomerID = Customer.CustomerID)) ORDER BY CustomerID"); %>

Thanks!
----- Original Message -----
From: "Stephan Szabo" <sszabo@megazone23.bigpanda.com>
To: "Mark G. Franz" <mgfranz@pe.net>
Cc: <pgsql-general@postgresql.org>
Sent: Tuesday, July 10, 2001 4:10 PM
Subject: Re: [GENERAL] Grab data WHERE table.ID NOT LIKE otherTable.ID


>
> On Fri, 6 Jul 2001, Mark G. Franz wrote:
>
> > Here is my SQL;
> >
> > "SELECT Registration.CustomerID, Customer.CustomerID AS CustID,
Firstname,
> > Lastname, Username, Password, Question, Answer, Email, Age, Gender,
Address,
> > City, State, Zip FROM Customer, Registration WHERE Customer.CustomerID
NOT
> > LIKE Registration.CustomerID"
> >
> > I'm trying to return all the records from Customer that have not
registered
> > in Registration, so the psuedo sql would read;
> >
> > Return everything from all fields in Customer where the ID is NOT in the
> > Registration table.  Any ideas?
>
> Maybe:
> select ... from Customer where NOT EXISTS (Select * from
>  Registration where Customer.CustomerID LIKE Registration.CustomerID)
>


pgsql-general by date:

Previous
From: Jüri Fjodorov
Date:
Subject: MS Access 97 SR-1, psqlodbc 7.01.00.06, slow perfomance
Next
From: "Chad R. Larson"
Date:
Subject: Re: NULL values