R 
		
								
				
				
			
		Ranjith Kurian
i have two tables as shown below
Table 1
				
			Table 1
 Customer Name
 Bank of New York
 DenMark
 
 Table 2 [Source]
 CustomerName
 Bank of New York The
 DenMark LPC
 DenMark
 Bank of New
 
 
 
 Below is the query i hv built, but the result is not to my expection.
 
 SELECT [tbl List].[Customer Name], [tbl Source].CustomerName
 FROM [tbl List], [tbl Source]
 WHERE [tbl List].[Customer Name] LIKE [tbl Source].CustomerName;
 
 In the above code i have used LIKE funtion which pulls only the similar name
 but i need my query to pull allmost similar name.
 
 Result expected:
 CustomerName
 Bank of New York The
 DenMark LPC
 DenMark
 Bank of New
