Mysql
 sql >> Datenbank >  >> RDS >> Mysql

php-mysql holt die nächste und vorherige ID aus einer Datenbank

Sie können so etwas tun:

Für die nächste ID

SELECT id from tablename where username = 'user1' AND id > $currentId ORDER BY ID ASC LIMIT 1;

Für vorherige ID,

SELECT id from tablename where username = 'user1' AND id < $currentId ORDER BY ID DESC LIMIT 1;