What I want is to search for a unique id (not the primary key) in a table where 99% of my searches for this unique id will be in the latest added rows.
So I want that my search begins from the last row to the first row. as the column is unique, when the search will start from the last row, the value will be found too much faster.
so the question is how can I obligate mysql to start searching in my procedure from the last row??
I found this question similar, or have same idea like my question but I didn't found any working answer.
any help is appreciated :))