Hello !
I have a table with 25.000 rows (columns with strings).
I would like to improve my select query. "SELECT name FROM table WHERE name LIKE 'something' ORDER BY name LIMIT 15"
The database will be static.
I would like to know if it's possible to order a column when I am inserting a row in my table and if it will reduce the time of the select query if the table is already order by name ?