Vous pouvez faire quelque chose comme ceci :
Pour l'identifiant suivant,
SELECT id from tablename where username = 'user1' AND id > $currentId ORDER BY ID ASC LIMIT 1;
Pour l'identifiant précédent,
SELECT id from tablename where username = 'user1' AND id < $currentId ORDER BY ID DESC LIMIT 1;