OptimisticYid
Registered User.
- Local time
- Today, 15:12
- Joined
- Apr 8, 2008
- Messages
- 17
Just a quick problem .... I hope. I'm using SQL Server Management Express to administer my SQL database. Basically I have about 1100 products, 400 of which have a postage price of £6.00 which I need to change to £4.95, but the SQL statement I have written below doesn't seem to work. Can anyone point out 'the error of my ways'.
Many thanks in advance.
Update LS2Products
Set ProductPostagePrice = replace(ProductPostagePrice, '6.0000', '4.9500')
Many thanks in advance.