Ini menjawab versi asli dari pertanyaan.
Anda dapat menggunakan 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
);
Perhatikan bahwa di meja besar, ini tidak akan efisien!