当前位置:网站首页>sql 大小写转换,去掉前后空格
sql 大小写转换,去掉前后空格
2020-11-09 22:26:00 【龘游戏人生龘】
-- 大小写转换 转为小写
UPDATE file_selection SET mash=LOWER(mash) WHERE xxxxx = '0';
-- 大小写转换 转为大写
UPDATE file_selection SET mash=UPPER(mash) WHERE xxxxx = '0';
-- 去掉字段中的空格 字符前的空格
UPDATE file_selection SET mash=ltrim(mash)
-- 去掉字段中的空格 字符后的空格
UPDATE file_selection SET mash=rtrim(mash)
-- 去掉字段中的空格 字符中的空格
UPDATE file_selection SET mash=replace(mash, ' ', '') WHERE xxxxx = '0';
版权声明
本文为[龘游戏人生龘]所创,转载请带上原文链接,感谢
https://my.oschina.net/u/3628379/blog/4710147
边栏推荐
- LeetCode 49 字母异位词分组
- How to gracefully prevent switch switching of view UI?
- 东哥吃葡萄时竟然吃出一道算法题!
- Expect ':' at 0, actual = (JSON conversion exception resolution)
- LinkedList源码简析
- More than 60 technical executives gathered in Songshan Lake, and the first phase of Huawei cloud core partner developer training camp was successfully concluded
- 40 tips for life that may be useful
- Container technology (3) mirror summary [16]
- win7+vs2015+cuda10.2配置TensorRT7.0
- 配置ng-zerro的nz-date-picker时间选择组件
猜你喜欢
随机推荐
磁阻式随机存储器MRAM基本原理
SQL server attached database access denial resolution summary
What if the Mac can't connect to the app store and prompts you to connect to the network?
How to realize the authority route and authority menu of background management system
Low power Bluetooth single chip helps Internet of things
分库分表的 9种分布式主键ID 生成方案,挺全乎的
dat.GUI Creating visualization tools (1)
商品后台系统优化
PHP - cURL复制粘贴性接入短信验证码示例
技术点5:XML语言
PLSQL Developer常用设置
刚毕业都会迷茫,我经过7年总结,送给程序员的你们7点建议
What is the Ethernet module? What are the functions and characteristics of the Ethernet module
nodejs篇-手写koa中间件
How to use binary search algorithm
60 余位技术高管齐聚松山湖,华为云第一期核心伙伴开发者训练营圆满落幕
LeetCode 50 Pow(x,n)
[最佳实践]了解 Eolinker 如何助力远程办公
More than 60 technical executives gathered in Songshan Lake, and the first phase of Huawei cloud core partner developer training camp was successfully concluded
JS深拷贝







