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!

Removing commas in fields of a table.

Status
Not open for further replies.

dhaveedh

Programmer
Aug 13, 2003
112
GB
Does anyone out there have any code that can check through all the fields in atable and replace all occurences of a comma with a space.

Any help will be appreciated.

Thanks

KISS - Keep It Simple Sugar!
 
Uh, you can do a bunch of UDPATE queries, where you do

[tt]UPDATE tablename SET fieldname = Replace([fieldname], ",", " ")[/tt]


Look carefully and you'll see how that works. This will be quicker to set up than any code we might write.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top