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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need to know how to replace part of a field 2

Status
Not open for further replies.

Taecca

Technical User
Jul 20, 2004
59
US
In one of my colums has data as following:
Client ID: AAA2393
Client ID: AXY22228900
Client ID: 92000AZyU
OPQ282822AZY
NO001AZND
and so on...

In my query I would like to remove the words: Client ID:

How can I do that?

 
Does this work...

REPLACE(yourfieldname,"Client ID: ","")

-L
 
Code:
UPDATE tbl SET fld = Replace ( fld, "Client ID: ", "" )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top