What is the difference between WHERE AND IN?
OR
1. SELECT * FROM EMPLOYEE WHERE EMPID=123
2. SELECT * FROM EMPLOYEE WHERE EMPID IN (123)
WHAT IS THE DIFFERENCE?

Answer Posted / aditya bisoi

Actually Both Query will return Same Result....
But Performance wise 1st Query better..Bcz it will return the Exact Record with out check hole record in the table....

But when we use IN operator then the sql engine will do the Table scan and retrive the Result...

Is This Answer Correct ?    5 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Once setting replication, can you have distributor on sql server 2005, publisher of sql server 2008?

754


What is the order by used for?

794


what data regions are and what are the different data regions?

115


What security features are available for stored procedure?

772


What is the server name for sql management studio?

662


How do you manipulate data?

666


Why do you need a sql server?

693


What is history table in sql server?

665


Where sql server user names and passwords are stored in sql server? : sql server database administration

797


Explain the use of containers in ssis and also their types?

710


If I delete a template from the list in sql studio, will it be deleted from the hard disk? : sql server management studio

755


What is ssrs?

109


what is new philosophy for database devises for sql server 7.0? : Sql server database administration

676


Explain what is “asynchronous” communication in sql server service broker?

674


What is recursion? Is it possible for a stored procedure to call itself or recursive stored procedure?

753