F
Fredriksson via AccessMonster.com
I only want to replace a certain character within a string. Will the Replace
command do a substring search and replace? What happens if some of the rows
contain the character that I am trying to replace and other row do not? I am
trying to strip unprintable characters in the column.
Is this the correct SQL syntax?
UPDATE Table1
SET REPLACE( [ColumnName], Chr(9), "")
command do a substring search and replace? What happens if some of the rows
contain the character that I am trying to replace and other row do not? I am
trying to strip unprintable characters in the column.
Is this the correct SQL syntax?
UPDATE Table1
SET REPLACE( [ColumnName], Chr(9), "")