आप ऐसा कुछ कर सकते हैं:
अगली आईडी के लिए,
SELECT id from tablename where username = 'user1' AND id > $currentId ORDER BY ID ASC LIMIT 1;
पिछली आईडी के लिए,
SELECT id from tablename where username = 'user1' AND id < $currentId ORDER BY ID DESC LIMIT 1;