Forum Moderators: coopster
(If you're going to go for another database, I'd try PostgreSQL, unless you need any Oracle specific features).
However it sounds like your query is probably very I/O bound (i.e. the database has to scan the entire table from disk, which can be relatively slow). Rather than changing the backend, I'd suggest seeing if you can optimize the query in MySQL first.
But you are right, as the number of rows go up, Oracle might handle things better than Mysql. Afterall, I haven't seen any DB who can beat Oracle.
Habtom