Mysql常用函数的汇总,可看下面系列文章
https://www.cnblogs.com/poloyy/category/1765164.html
upper 的作用
将所有字符串更改为大写,然后返回
upper 的语法格式
UPPER(str)
小栗子
SELECT UPPER('Hey'); # HEY SELECT UPPER('hello world'); # HELLO WORLD SELECT UPPER(NULL); # NULL
2022-07-17 11:45:22
Mysql常用函数的汇总,可看下面系列文章
https://www.cnblogs.com/poloyy/category/1765164.html
将所有字符串更改为大写,然后返回
UPPER(str)
SELECT UPPER('Hey'); # HEY SELECT UPPER('hello world'); # HELLO WORLD SELECT UPPER(NULL); # NULL
下一篇:tr命令-转换和删除字符