Re: Question on Select - Mailing list pgsql-general

From Rajesh Kumar Mallah
Subject Re: Question on Select
Date
Msg-id 3FAFCAAF.20005@trade-india.com
Whole thread Raw
In response to Question on Select  (Alex <alex@meerkatsoft.com>)
List pgsql-general



select ref_code from tab_b where not exists (select * from tab_a where
item_id = tab_b.item_id);

make sure u have index on item_id  in tab_a .

the above sql is quite efficient , other method is to use left join.


Alex wrote:

> Hi,
> I have two tables,
>  Table A: item_id
>  Table B: item_id,  ref_code
> and i want to list  all ref_codes in table B that are not referenced
> by Table A.
> Table A has about 3million records./ table B 200
>
> What is the best way to do that ?
>
> Thanks
> Alex
>
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 3: if posting/reading through Usenet, please send an appropriate
>      subscribe-nomail command to majordomo@postgresql.org so that your
>      message can get through to the mailing list cleanly




pgsql-general by date:

Previous
From: Alex
Date:
Subject: Question on Select
Next
From: Scott Chapman
Date:
Subject: Re: SQL-question: returning the id of an insert querry