I know that SELECT * is considered bad practice since it can return un-needed information.
But what about this:
Say i have a table with 4 columns, columns 1-4
Is there any difference (like fast, performance) between these two queries?
SELECT col_1,col_2,col_3,col_4 FROM ...
And
SELECT col_2,col_4,col_1,col_3 FROM ...
FYI : 1st query has same order as database columns,but 2nd query did not care about DB table columns order.