I read somewhere that never use * to return all columns in a table–it’s lazy. In this case, if I need all 5 columns and there won't be any changes to the table later, are there any performances difference in:
SELECT *
from table
vs.
SELECT id,col1,col2,col3,col4
from table