当前位置:网站首页>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
边栏推荐
- 商品后台系统优化
- C console calls ffmpeg to push MP4 video file to stream media open source service platform easydarwin process
- How to greatly improve the performance of larravel framework under php7? Install stone!
- 获取List集合对象中某一列属性值
- [best practice] learn how eolinker helps Telecommuting
- 手把手教你使用容器服务 TKE 集群审计排查问题
- [最佳实践]了解 Eolinker 如何助力远程办公
- 在PHP7下怎么大幅度提升Laravel框架性能?安装Stone!
- [best practice] learn how eolinker helps Telecommuting
- 配置ng
猜你喜欢
A great guide to curl
[QT] subclass QObject + movetothread to realize multithreading
如何k个一组反转链表
都要2021年了,现代C++有什么值得我们学习的?
Unemployment after graduation? How do college students allocate their study time and have a complete computer knowledge system?
低功耗蓝牙单芯片为物联网助力
Performance evaluation report of YoMo codec - Y3
修改jar包里的文件
Configure the NZ date picker time selection component of ng zerro
crm系统的成本一般是多少?
随机推荐
How to upload your avatar with code and add your own copyright information?
【科创人】Rancher江鹏:从清华工程物理学硕士到云计算开源创业者
How to use binary search algorithm
R8 compiler: tailoring kotlin libraries and Applications
Rabbitmq installation
如何运用二分查找算法
Analysis steps of commodity background management
PLSQL Developer常用设置
在PHP7下怎么大幅度提升Laravel框架性能?安装Stone!
Git老鸟查询手册
如何实现后台管理系统的权限路由和权限菜单
A practical chrome Gadget: xtrace
【QT】子类化QObject+moveToThread实现多线程
[best practice] learn how eolinker helps Telecommuting
EMQ X 在中国建设银行物联网平台中的应用
SQL server attached database access denial resolution summary
Almost finished all the list titles, I found these things...
你了解你的服务器吗、你知道服务器的有哪些内幕吗
当我们开发一个接口时需要注意些什么
SQL Server附加数据库拒绝访问解决方法汇总