大小写字符转换【Sql Server和C#两种写法】
案例:Var Str = ”abdCnd“
如何将Str = ”ABDCND“?
Sql Server写法:upper(Str) ==> Lower(Str)

C#写法:Str.toUpper() ==> Str.toLower()
案例:Var Str = ”abdCnd“
如何将Str = ”ABDCND“?
Sql Server写法:upper(Str) ==> Lower(Str)

C#写法:Str.toUpper() ==> Str.toLower()