For example, I have a database like this:
id | fname | lname | sex | age | tel | cell | address
If I do select cell, fname, address, sex
instead of doing select fname, sex, cell, address
, will that affect the speed of query, in big tables?
I did a quick check in phpmyadmin and it appeared to be taking same time, but I wanted to double check.
Thanks.