SQL - table alias scope. - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T05:34:50Z http://stackoverflow.com/feeds/question/188828 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/188828/sql-table-alias-scope 1 SQL - table alias scope. Oscar Reyes 2008-10-09T19:30:41Z 2009-10-14T20:23:30Z <p>I've just learned ( yesterday ) to use "exists" instead of "in".</p> <pre><code> BAD select * from table where nameid in ( select nameid from othertable where otherdesc = 'SomeDesc' ) GOOD select * from table t where exists ( select nameid from othertable o where t.nameid = o.nameid and otherdesc = 'SomeDesc' ) </code></pre> <p>And I have some questions about this:</p> <p>1) The explanation as I understood was: <em>"The reason why this is better is because only the matching values will be returned instead of building a massive list of possible results"</em>. Does that mean that while the first subquery might return 900 results the second will return only 1 ( yes or no )?</p> <p>2) In the past I have had the RDBMS complainin: "only the first 1000 rows might be retrieved", this second approach would solve that problem?</p> <p>3) What is the scope of the alias in the second subquery?... does the alias only lives in the parenthesis? </p> <p>for example </p> <pre><code> select * from table t where exists ( select nameid from othertable o where t.nameid = o.nameid and otherdesc = 'SomeDesc' ) AND select nameid from othertable o where t.nameid = o.nameid and otherdesc = 'SomeOtherDesc' ) </code></pre> <p>That is, if I use the same alias ( o for table othertable ) In the second "exist" will it present any problem with the first exists? or are they totally independent?</p> <p>Is this something Oracle only related or it is valid for most RDBMS?</p> <p>Thanks a lot</p> http://stackoverflow.com/questions/188828/sql-table-alias-scope/188849#188849 2 Answer by Milan Babuškov for SQL - table alias scope. Milan Babuškov 2008-10-09T19:36:03Z 2008-10-09T19:47:01Z <p>It's specific to each DBMS and depends on the query optimizer. Some optimizers detect IN clause and translate it. </p> <p>In all DBMSes I tested, alias is only valid inside the ( )</p> <p>BTW, you can rewrite the query as:</p> <pre><code>select t.* from table t join othertable o on t.nameid = o.nameid and o.otherdesc in ('SomeDesc','SomeOtherDesc'); </code></pre> <p>And, to answer your questions:</p> <ol> <li>Yes</li> <li>Yes</li> <li>Yes</li> </ol> http://stackoverflow.com/questions/188828/sql-table-alias-scope/188851#188851 1 Answer by Mitchel Sellers for SQL - table alias scope. Mitchel Sellers 2008-10-09T19:36:27Z 2008-10-09T19:36:27Z <p>Personally I would use a join, rather than a subquery for this.</p> <pre><code>SELECT t.* FROM yourTable t INNER JOIN otherTable ot ON (t.nameid = ot.nameid AND ot.otherdesc = 'SomeDesc') </code></pre> http://stackoverflow.com/questions/188828/sql-table-alias-scope/188899#188899 3 Answer by Constantin for SQL - table alias scope. Constantin 2008-10-09T19:47:22Z 2008-10-09T19:56:31Z <ol> <li>Oracle-specific: When you write a query using the IN clause, you're telling the rule-based optimizer that you want the inner query to drive the outer query. When you write EXISTS in a where clause, you're telling the optimizer that you want the outer query to be run first, using each value to fetch a value from the inner query. See <a href="http://articles.techrepublic.com.com/5100-10878_11-5297080.html" rel="nofollow">"Difference between IN and EXISTS in subqueries"</a>.</li> <li>Probably.</li> <li>Alias declared inside subquery lives inside subquery. By the way, I don't think your example with 2 ANDed subqueries is valid SQL. Did you mean UNION instead of AND?</li> </ol> http://stackoverflow.com/questions/188828/sql-table-alias-scope/189259#189259 1 Answer by Jonathan Leffler for SQL - table alias scope. Jonathan Leffler 2008-10-09T21:20:30Z 2008-10-09T21:20:30Z <p>You are treading into complicated territory, known as 'correlated sub-queries'. Since we don't have detailed information about your tables and the key structures, some of the answers can only be 'maybe'.</p> <p>In your initial IN query, the notation would be valid whether or not OtherTable contains a column NameID (and, indeed, whether OtherDesc exists as a column in Table or OtherTable - which is not clear in any of your examples, but presumably is a column of OtherTable). This behaviour is what makes a correlated sub-query into a correlated sub-query. It is also a routine source of angst for people when they first run into it - invariably by accident. Since the SQL standard mandates the behaviour of interpreting a name in the sub-query as referring to a column in the outer query if there is no column with the relevant name in the tables mentioned in the sub-query but there is a column with the relevant name in the tables mentioned in the outer (main) query, no product that wants to claim conformance to (this bit of) the SQL standard will do anything different.</p> <p>The answer to your Q1 is "it depends", but given plausible assumptions (NameID exists as a column in both tables; OtherDesc only exists in OtherTable), the results should be the same in terms of the data set returned, but may not be equivalent in terms of performance.</p> <p>The answer to your Q2 is that in the past, you were using an inferior if not defective DBMS. If it supported EXISTS, then the DBMS might still complain about the cardinality of the result.</p> <p>The answer to your Q3 as applied to the first EXISTS query is "t is available as an alias throughout the statement, but o is only available as an alias inside the parentheses". As applied to your second example box - with AND connecting two sub-selects (the second of which is missing the open parenthesis when I'm looking at it), then "t is available as an alias throughout the statement and refers to the same table, but there are two different aliases both labelled 'o', one for each sub-query". Note that the query might return no data if OtherDesc is unique for a given NameID value in OtherTable; otherwise, it requires two rows in OtherTable with the same NameID and the two OtherDesc values for each row in Table with that NameID value.</p>