In my mysql db I have the fields id, name, email, age, city, phone. In that order
Does the order in which I select/insert/update these matter, in terms of speed/other?
If I say
SELECT phone, city, name, id, age, email FROM tablename
// mixed up order
As opposed to
SELECT id, name, email, age, city, phone FROM tablename
// original order of columns
EDIT: not only for one small simple query (just an example). Concern is also for 100.000 rows and multiple/advanced queries and loops