Mar 22, 2004 #1 sjaak538 Programmer Mar 22, 2004 2 NL Hello Does somebody know how to solve this select * form geo,places where geo.name = places.name Where geo.name could be New York and geo.places could be New-York Thank for have a look Sjaak
Hello Does somebody know how to solve this select * form geo,places where geo.name = places.name Where geo.name could be New York and geo.places could be New-York Thank for have a look Sjaak
Mar 22, 2004 1 #2 TonyGroves Programmer Aug 13, 2003 2,389 IE Do you mean, treat spaces the same as hyphens in all situations? If so, the following should work: WHERE REPLACE(geo.name,' ','-') = REPLACE(places.name,' ','-') Upvote 0 Downvote
Do you mean, treat spaces the same as hyphens in all situations? If so, the following should work: WHERE REPLACE(geo.name,' ','-') = REPLACE(places.name,' ','-')