Oracle
 sql >> Database >  >> RDS >> Oracle

Come ottenere le ultime due righe con un determinato valore per data in SQL

MODIFICA Aggiornato per non contare il valore della data duplicato per lo stesso varchar2 .

Sostituito RANK() con DENSE_RANK() in modo tale da assegnare ranghi consecutivi, quindi ha utilizzato distinct per eliminare i duplicati.

Puoi utilizzare DENSE_RANK()

SELECT DISTINCT TXT, ENTRY_DATE
  FROM (SELECT txt,
               entry_date,
               DENSE_RANK () OVER (PARTITION BY txt ORDER BY entry_date DESC)
                  AS myRank
          FROM tmp_txt) Q1
 WHERE Q1.MYRANK < 3
ORDER BY txt, entry_date DESC

Inserimento:

txt | entry_date

xyz | 03/11/2014
xyz | 25/11/2014
abc | 19/11/2014
abc | 04/11/2014
xyz | 20/11/2014
abc | 02/11/2014
abc | 28/11/2014
xyz | 25/11/2014
abc | 28/11/2014

Risultato:

txt | entry_date

abc | 28/11/2014
abc | 19/11/2014
xyz | 25/11/2014
xyz | 20/11/2014