Tabela TURFE
Considere um banco de dados relacional que contém uma única tabela, TURFE, cuja estrutura é exibida com sua instância, a seguir.

Analise o comando SQL a seguir.
select distinct cavalo
from TURFE
where not exists
(select *
from
(select t1.pareo, sum(1) xpto, t1.cavalo
from TURFE t1, TURFE t2
where t1.pareo = t2.pareo
and t2.tempo <= t1.tempo
group by t1.cavalo, t1.pareo) x
where TURFE.cavalo = x.cavalo
and x.xpto <> 2
)
Considerando-se a instância da tabela TURFE descrita anteriormente, a execução do comando acima exibe no resultado o(s) nome(s):