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

Query SQL che confronta un attributo in più tuple in base ai valori di un altro attributo all'interno della relazione

SELECT DISTINCT a.name
FROM test AS a 
JOIN test AS b 
  ON a.name = b.name 
 AND a.date > b.date 
 AND a.score < b.score

SQL Fiddle