Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Rewrite subselect with using a join

by Anonymous Monk
on Jun 02, 2005 at 01:25 UTC ( [id://462714]=CUFP: print w/replies, xml ) Need Help??

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re: Rewrite subselect with using a join
by dbwiz (Curate) on Jun 02, 2005 at 07:53 UTC

    You were using the wrong join.

    Your snippet is moving computation from a database server to a client application, and it's doing that whitout any particular need.

    The canonical way of transforming your query should go through a table JOIN. However, since you are subquerying the same table, your nested query is nothing more than this:

    select object_id from mw_export_record where table_object != 'advertisers'; -- <-- operator change

    The inner part of your query is selecting all the IDs containing 'advertisers', while the outer part is saying "don't take any record from this list."

    Not only you are computing in the client what should be done in the server, but you are also telling the server to do something unnecessarily complex and heavy that it should not have been doing in the first place.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: CUFP [id://462714]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (2)
As of 2024-04-25 21:24 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found