Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: MySQL question

Re: MySQL question

From: Gregory Toomey <nobody_at_nowhere.com>
Date: Sat, 19 Oct 2002 18:41:16 +1000
Message-ID: <gM8s9.56666$g9.162732@newsfeeds.bigpond.com>


The following should be pretty close:

select users.field1, users.field2
from users
left join blacklist ON users.user_name=blacklist.user_name where blacklist.user_name is null

(field1 etc are the columns you want to select).

And for the Oracle users, mysql may be a little primitive at the moment but is blindingly fast.

gtoomey Received on Sat Oct 19 2002 - 03:41:16 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US