大小写字符转换【Sql Server和C#两种写法】

案例:Var Str = ”abdCnd“

如何将Str = ”ABDCND“?

Sql Server写法upper(Str)   ==>  Lower(Str)  

 

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

 

posted on 2022-11-09 00:28  El飞燕  阅读(19)  评论(0编辑  收藏  举报

导航