Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to remove spaces from text (ex: East Point Dr)

Status
Not open for further replies.

x2sdavis

Programmer
May 1, 2003
2
US
I have a table that has spaces between words (East Point Dr) that I want to link to a table without spaces (EastPointDr)Please help...Thanks in Advance

SED
 
Use the replace function in an update query.

Code:
UPDATE yourtable SET yourtable.[yourfield] = replace(yourtable.[yourfield], " ", "");

Greg
People demand freedom of speech as a compensation for the freedom of thought which they seldom use. Kierkegaard
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top