यह प्रश्न के मूल संस्करण का उत्तर देता है।
आप उपयोग कर सकते हैं 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
);
ध्यान दें कि एक बड़ी मेज पर, यह प्रभावी नहीं होगा!