I need to select 25 columns from a database, with a conditions WHERE and ORDER BY.
I tried to make an index for that but it is limited to 16 columns only. How could I organize the mysql statements and database for the fastest way to select these 25 columns from the database within PHP?
Example Table:
Columns: A, B, C, D, E, F, ....
Query: "SELECT A, B, C, D, E, F, ... FROM table WHERE X = 5 ORDER BY Z"
UPDATE 1:
It is a large table (many rows) that's why I need an index to speed up the process.