2
votes
Optimizing single-row queries from large tables in MySQL
The answer is most definately a yes. If you define a unique index on timestamp, opening and slatangle MySQL should be able to find your row with very few disc seeks.
You might experiment wi …
1
vote
How can I optimise this MySQL query?
You could precompute the MID(game,14,1) and MID(game,1,14) and store the first ten digits of the game in a separate gameid column which is indexed.
It …
