How can I make a PostgreSQL query faster so that it gives back the lowest values?
I have the following data: id1 id2 score 281 33453 23 281 33452 23 281 36466 24 282 12118 14 282 27603 18 How do I write my query in PostgreSQL in the most efficient way so that I keep…