当前位置:网站首页>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