|
|
|
SSC Rookie
      
Group: General Forum Members
Last Login: Monday, April 01, 2013 10:39 AM
Points: 27,
Visits: 161
|
|
Hi, What happened if we run select statement i.e
Select * from TableName;
When we execute the above sql statement what is happened Internally?
|
|
|
|
|
SSC-Dedicated
           
Group: General Forum Members
Last Login: Today @ 8:36 AM
Points: 37,660,
Visits: 29,913
|
|
The query optimiser generates an execution plan, which in this case is a trivial plan that just contains the table scan and select operators. The query execution engine executes that execution plan, requesting every single row in the table from the storage engine, then returning that to the client.
Gail Shaw Microsoft Certified Master: SQL Server 2008, MVP SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability
We walk in the dark places no others will enter We stand on the bridge and no one may pass
|
|
|
|