Questo risponde alla versione originale della domanda.
Puoi usare not exists
:
select col, description || ' ...'
from t
where not exists (select 1
from t t2
where t2.description like t.description || '%' and
t2.descriptoin <> t.description
);
Nota che su un tavolo grande, questo non sarà efficiente!