Let's say I have a (hypothetical) table called Table1 with 500 columns and there is a view called View1 which is basically 
 select Column1, Column2,..., Column500, ComputedOrForeignKeyColumn1,...     
 from Table1 
 inner join ForeignKeyTables .....
Now, when I execute something like
Select Column32, Column56 
from View1
which one of the below 3 does SQL Server turn it into?
Query #1:
select Column32, Column56 
from 
    (select 
         Column1, Column2,..., Column500, ComputedOrForeignKeyColumn1,... 
     from 
         Table1 
     inner join 
         ForeignKeyTables ......) v
Query #2:
Select Column32, Column56 
from Table1
Query #3:
select Column32, Column56 
from 
      (select Column32, Column56 
       from Table1) v
The reason I'm asking this is that I do have a very wide table and a view sitting on top of it (that basically inner joins to bring texts from all foreign key ids) and I can't figure out if SQL Server fetches all columns and then selects the ones that are needed or fetches only those that are needed (while also ignoring unnecessary joins etc)...if it is former then a view would not be the best for performance.
 
     
     
     
    