Mysql
 sql >> Database >  >> RDS >> Mysql

ottenere il record ID successivo e precedente nel database su Yii

Ho aggiunto le seguenti funzioni nel mio modello in Yii2:

public function getNext() {
    $next = $this->find()->where(['>', 'id', $this->id])->one();
    return $next;
}

public function getPrev() {
    $prev = $this->find()->where(['<', 'id', $this->id])->orderBy('id desc')->one();
    return $prev;
}