hi again,
There are several characters I need to strip-out of a column.
The 1 giving me a problem is the single quote.
This doesn't work:
UPDATE [Dealer Names And AddressesTEST]
SET [Dlr Name] = REPLACE([Dlr Name], '[']', '')
This of course gives a syntax error:
UPDATE [Dealer Names And AddressesTEST]
SET [Dlr Name] = REPLACE([Dlr Name], ''', '')
What's the trick?
Thanks a lot! John
There are several characters I need to strip-out of a column.
The 1 giving me a problem is the single quote.
This doesn't work:
UPDATE [Dealer Names And AddressesTEST]
SET [Dlr Name] = REPLACE([Dlr Name], '[']', '')
This of course gives a syntax error:
UPDATE [Dealer Names And AddressesTEST]
SET [Dlr Name] = REPLACE([Dlr Name], ''', '')
What's the trick?
Thanks a lot! John