Possible Duplicate:
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.
I have table about 45 columns, however I need to select 40 of them.
Wouldn't be SELECT *
faster than to list every column but those 5 I do not need?
What's faster in this case?
I'm selecting only ONE ROW!