Jan 12, 2005 #1 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?
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?
Jan 12, 2005 1 #2 Lothario Programmer Nov 3, 2004 407 US Does this work... REPLACE(yourfieldname,"Client ID: ","") -L Upvote 0 Downvote
Jan 12, 2005 1 #3 Golom Programmer Sep 1, 2003 5,595 CA Code: UPDATE tbl SET fld = Replace ( fld, "Client ID: ", "" ) Upvote 0 Downvote