I have a database populated through an import from an older system. The description field often includes the " symbol, which in this case means inches, somewhere in the middle. Of course, it meant a whole other thing to the SQL database, so during the import any occurrence of " got turned into "". I need to run an update query that will replace any occurrence of "" with -IN.
Example of the intended result:
21"" monitor with double bezel
should become
21-IN monitor with double bezel
How do I accomplish this?
Cheryl dc Kern
Example of the intended result:
21"" monitor with double bezel
should become
21-IN monitor with double bezel
How do I accomplish this?
Cheryl dc Kern