Possible Duplicate:
select * vs select column
Suppose there is a table with 20 columns. Is there any speed difference between a select *
and a select that includes all 20 columns explicitly?
If there is no difference, what would you advise? Should I use the lazy select *
or should I create a query string with each column?
(If it makes any difference: I use SQL Server.)