Possible Duplicate:
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.
SELECT * FROM tbl1
and
SELECT field1, field2,...... FROM tbl1
how does SQL engine
execute the previous two select statements (step by step) and which one performs better?
The following recommendations will help you in your SQL tuning process.
You'll find 3 sections below:
SELECT
*
FROM
tbl1