0
votes
MySQL next/previous ids (arbitrary sort order)
I've done this in the past with queries(to use your example) like:
SELECT id FROM ps WHERE id>'4' ORDER BY c LIMIT 1
For the next id and for the previous id: …
0
votes
size limit of a mysql query ruby/mysql
I'm definitely not a MySQL expert, but in my experience I have found that using sub-SELECTs can be the source of some performance troubles.
I try to avoid using them, but it isn't always p …
