Si se asume que los ids son en intento del orden creciente usar este querys
- DESPUÉS
$sql = “seleccionan * del app_get_account_inbox_funk donde account_id=”. $this->account_id.” Y conversation_id> ". $this->conversartion_id. “orden por el LÍMITE 1 de conversation_id ASC”;
- ANTERIOR
$sql = “seleccionan * del app_get_account_inbox_funk donde account_id=”. $this->account_id.” Y<> conversation_idconversartion_id. “orden por el LÍMITE 1 de conversation_id DESC”;
Y en el caso del último/primero del mensaje
- PASADO
$sql = “seleccionan * del app_get_account_inbox_funk donde account_id=”. $this->account_id.” orden por el LÍMITE 1 de conversation_id DESC ";
- PRIMERO
$sql = “seleccionan * del app_get_account_inbox_funk donde account_id=”. $this->account_id.” orden por el LÍMITE 1 de conversation_id ASC ";