I need to do this for a whole DB column foo
:
Regex regex = new Regex(@"^([A-Z][A-Z])(\d{6})$");
foo = regex.Replace(foo, "${1}0${2}"));
What is the simplest way to do this? I'm completely alien to MS SQL Server programming, and to C#, actually. Can I get the job done without preliminary 200 hours of CLR/MS SQL Server/T-SQL training?