Wrox Programmer Forums
Go Back   Wrox Programmer Forums > SQL Server > SQL Server 2000 > SQL Server 2000
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 14th, 2003, 09:17 PM
Authorized User
 
Join Date: Aug 2003
Posts: 25
Thanks: 0
Thanked 0 Times in 0 Posts
Default performance of sql statement

Which SQL statement is better in performance?
1. select * from emp e, dept d
   where e.dept_id=d.dept_id
   and d.dept_name='ACCOUNT'

2. select * from emp e, dept d
   where d.dept_name='ACCOUNT'
   and e.dept_id=d.dept_id



 
Old August 15th, 2003, 06:00 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 839
Thanks: 0
Thanked 1 Time in 1 Post
Default

I don't think you will see any difference between these two queries. Generally speaking, the optimizer will evaluate WHERE predicates in whatever order it chooses, and in whatever order it thinks best. Even though one of the predicates is actually an old style, deprecated form of specifying a JOIN, and the other is a row selection, depending upon the presence of indexes and the distribution of data values these most likely will be processed in 'parallel', that is, more or less at the same time, while the JOIN results are being built.

You can inspect the query execution plan on your database to see if there is any difference between the two. My guess is that they will be identical.

Jeff Mason
Custom Apps, Inc.
www.custom-apps.com





Similar Threads
Thread Thread Starter Forum Replies Last Post
convert a SQL Statement from MS Access to a SQL Corey Access 6 March 28th, 2007 12:33 PM
Sql Server 2000 vs Oracle 9i - performance problem sniegu Hibernate 2 January 27th, 2006 12:10 PM
Ado.net performance question (SQL server vs OleDB spamp ADO.NET 1 August 2nd, 2004 10:37 AM
Help with SQL statement acdsky SQL Language 3 June 18th, 2004 04:53 AM
SQL Statement stu9820 ASP.NET 1.0 and 1.1 Basics 1 September 30th, 2003 04:30 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.