Possible Duplicate:
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc
I have a question about performance in MySQL. Before the start sorry for my bad English.
It's the question: what is performance differences between asterisk and field names in comma separated.
For example: a have a table in "example_table" named and 5 fields "f1, f2, f3, f4, f5" named.
select * from `example_table`;
or
select f1, f2, f3, f4, f5 from `example_table`;
Thanks for replies.