Click here to Skip to main content
15,896,348 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
SQL
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%



In this query i want to use like in soundex..pls tell me where i can use that..
Posted
Updated 28-Apr-15 19:20pm
v2
Comments
Suvendu Shekhar Giri 29-Apr-15 1:22am    
May be "DIFFERENCE" can be useful to you. Check once.
DIFFERENCE (Transact-SQL)
Member 11337367 29-Apr-15 1:45am    
please anyone can show me how to write soundex using like ...

1 solution

 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900