If I have mySQL table with 10 fields and I only need the to retrieve values of the some fields, is it advisable to use
SELECT field1, field2, field3 FROM...
rather than
SELECT * FROM...
I mean does it help retrieval / script execution faster if Im using [SELECT field1, field2, field3....]