I am wondering what is the fastest (or easiest to process the database)
Say the db table has 4 fields: x, y, z, q
I need only 3: x, y, q
Which method is faster or easier for the database to work (using PHP). "SELECT * FROM table" or "SELECT x, y, q FROM table"?
Will there be the same application if there were 5 or more fields in the table, for now I can only select 3?
source
share