本文介绍了如何在sql中使用soundex ..?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

select *  from Tbl_STP st
join Tbl_STP_Details std on std.N_Srno=st.N_Srno
join Tbl_Sub_Area_Mst sub on sub.C_Code=std.C_Subarea_code_to
join up u on u.[fieldforce_name]=st.C_FS_Code
and SOUNDEX (u.territory)=SOUNDEX(sub.C_Name)
join Tbl_FS_Mst fs on fs.C_Code=u.[fieldforce_name]
and fs.C_Area_Code=std.C_Area_Code
where u.territory not like %sa0%







在这个查询中我想在soundex中使用...请告诉我在哪里可以使用..




In this query i want to use like in soundex..pls tell me where i can use that..

推荐答案


这篇关于如何在sql中使用soundex ..?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-16 01:04