これは、質問の元のバージョンに答えます。
存在しないコード>を使用できます :
select col, description || ' ...'
from t
where not exists (select 1
from t t2
where t2.description like t.description || '%' and
t2.descriptoin <> t.description
);
大きなテーブルでは、これは効率的ではないことに注意してください!