当前位置:网站首页>SQL case conversion, remove the space before and after
SQL case conversion, remove the space before and after
2020-11-09 22:26:00 【Game life】
-- toggle case Change to lowercase
UPDATE file_selection SET mash=LOWER(mash) WHERE xxxxx = '0';
-- toggle case Capitalize
UPDATE file_selection SET mash=UPPER(mash) WHERE xxxxx = '0';
-- Remove the space in the field The space before the character
UPDATE file_selection SET mash=ltrim(mash)
-- Remove the space in the field Space after character
UPDATE file_selection SET mash=rtrim(mash)
-- Remove the space in the field Spaces in characters
UPDATE file_selection SET mash=replace(mash, ' ', '') WHERE xxxxx = '0';
版权声明
本文为[Game life]所创,转载请带上原文链接,感谢
边栏推荐
- C/C++编程日记:逻辑井字棋(圈叉)游戏开发
- Modify the files in the jar package
- lvgl 库 V7版本相关应用
- 没有磁盘空间 No space left on device
- 嘉宾专访|2020 PostgreSQL亚洲大会阿里云数据库专场:王健
- 报错 Type interface *** is not known to the MapperRegistry. 的解决方案
- [graffiti Internet of things footprint] graffiti cloud platform interface description
- Unemployment after graduation? How do college students allocate their study time and have a complete computer knowledge system?
- JT Jingtao project
- 传统采购模式已变!汽车采购职能该如何创新?
猜你喜欢
随机推荐
探访2020 PG技术大会
如何高效进行模幂运算
价值超10亿美元的直播系统架构图是什么样子的?
表单验证,为避免全局污染,少定义全局变量写法
Nodejs: handwritten koa Middleware
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
团灭 LeetCode 打家劫舍 问题
Performance evaluation report of YoMo codec - Y3
jt-京淘项目
京淘项目day10
2018中国云厂商TOP5:阿里云、腾讯云、AWS、电信、联通 ...
财务管理系统如何帮助企业实现财务自动化管理?
EMQ X 在中国建设银行物联网平台中的应用
How SSL certificate and public IP address affect SEO
ERP的权限管理的操作与设计--开源软件诞生24
IP address SSL certificate
如何k个一组反转链表
Unemployment after graduation? How do college students allocate their study time and have a complete computer knowledge system?
[最佳实践]了解 Eolinker 如何助力远程办公






