I asked myself if a full select like
SELECT('*') FROM table ...
is more performant than
SELECT('id,bla,blub') FROM table
or vice versa (with larger amount of rows and without joins or something). Has anyone benchmarked/tested this? I thought it could be, because it's just like "give me everything" and it doesn't need to "search" for the right columns (and I also get the columns I wanted). On the other hand if I specified the columns, there is less data that has to be given out. So what is/could be more performant?