PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Rilevare righe con la stessa combinazione di numeri nelle prime due colonne e selezionare quella con il numero più alto nella terza colonna

L'idea è simile a questa . Puoi creare due colonne aggiuntive usando pmin un pmax raggruppare come segue:

Un data.table soluzione. Ma se non vuoi data.table, puoi comunque usare l'idea. Tuttavia, è altamente improbabile che tu diventi più veloce della soluzione data.table con il solo codice R.

# assuming your data.frame is DF
require(data.table)
DT <- data.table(DF)
# get min of V1,V2 on one column and max on other (for grouping)
DT[, `:=`(id1=pmin(V1, V2), id2=pmax(V1, V2))]
# get max of V3
DT.OUT <- DT[, .SD[which.max(V3), ], by=list(id1, id2)]
# remove the id1 and id2 columns
DT.OUT[, c("id1", "id2") := NULL]

#     V1  V2     V3
# 1:   2   1    666
# 2: 100 102  23131
# 3:  10  19 124444
# 4:  10  15   1244
# 5: 100 110     23