Thank John,
I think LEFT function for version 2000, but not for 6.5, so here is my code, and it works.
Thank you very much for your initial help.
UPDATE YourTable
SET YourColumn = SUBSTRING(YourColumn, 1, 3)
+ '6' --<--- 4th character changed to
+ SUBSTRING(YourColumn, 5,3))