Re: change all the letters to small cap



On Sun, 16 Apr 2006 22:15:01 -0700, Tiffany wrote:

it is always cybershot and i want to remove it from the real data.

Hi Tiffany,

Run the code below

BEGIN TRANSACTION
UPDATE YourTable
SET YourColumn = REPLACE(YourColumn, 'Cybershot', '')

Check results. If anything is wrong, execute ROLLBACK TRANSACTION. If
all is okay, execute COMMIT TRANSACTION.

--
Hugo Kornelis, SQL Server MVP
.