If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ANSI SQL > IN / EXISTS Computed for every row

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 11-15-03, 09:29
r123456 r123456 is offline
Registered User
 
Join Date: Sep 2003
Location: The extremely Royal borough of Kensington, London
Posts: 778
IN / EXISTS Computed for every row

Hi,

I would just like to know if the subquery of IN / EXISTS is RE-computed for every row in the outer query when the sub-query is independent of the outer. If this is so, would there still be much of a performance issue between this and JOIN.

Two 10x10 tables using join cross product would be 100 rows scanned, where as IN / EXISTS computed for each outer row is also 100 rows searched. Although there is a difference what do other people know.
__________________
Bessie Braddock: Winston, you are drunk!
Churchill: And Madam, you are ugly. And tomorrow, I'll be sober, and you will still be ugly.
Reply With Quote
  #2 (permalink)  
Old 11-17-03, 07:35
andrewst andrewst is offline
Moderator.
 
Join Date: Sep 2002
Location: UK
Posts: 5,171
Re: IN / EXISTS Computed for every row

If the sub-query is not correlated to the main query then it will normally be executed only once. However, any query that uses EXISTS normally is correlated, because it checks for existence of something matching the current row of the main query.
__________________
Tony Andrews
http://tinyurl.com/tonyandrews
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On