标签:相似度
转载请注明出处:http://blog.csdn.net/songhfu/article/details/40074795
主要利用:oracle函数-SYS.UTL_MATCH.edit_distance_similarity
SQL脚本:
select * from (select ‘河北沧州东塑股份有限公司‘,name,
SYS.UTL_MATCH.edit_distance_similarity(‘河北沧州东塑股份有限公司‘,name) 相似度 from test_pp t) order by 相似度 desc
标签:相似度
原文地址:http://blog.csdn.net/songhfu/article/details/40074795