MySQL 的 UPPER(~)
方法将输入字符串转换为大写并返回。
参数
1. str
| string
要转换为大写的字符串。
返回值
输入大写字符串。
例子
考虑下表有关一些学生的信息:
student_id |
名称 |
名字 |
day_enrolled |
年龄 |
用户名 |
---|---|---|---|---|---|
1 |
Sky |
Towner |
2015-12-03 |
17 |
stowner1 |
2 |
Ben |
Davis |
2016-04-20 |
19 |
bdavis2 |
3 |
Travis |
Apple |
2018-08-14 |
18 |
tapple3 |
4 |
Arthur |
David |
2016-04-01 |
16 |
adavid4 |
5 |
Benjamin |
Town |
2014-01-01 |
17 |
btown5 |
可以使用此处的代码创建上述示例表。
基本用法
要以大写形式返回学生用户名:
SELECT UPPER(username)
FROM students;
+-----------------+
| UPPER(username) |
+-----------------+
| STOWNER1 |
| BDAVIS2 |
| TAPPLE3 |
| ADAVID4 |
| BTOWN5 |
+-----------------+
要返回大写的 'hello'
:
SELECT UPPER('hello');
+----------------+
| UPPER('hello') |
+----------------+
| HELLO |
+----------------+
二进制字符串
要对二进制字符串执行大写转换,必须首先将二进制字符串转换为非二进制字符串:
SET @fav_city = BINARY 'tokyo';
SELECT UPPER(@fav_city), UPPER(CONVERT(@fav_city USING utf8mb4));
+------------------------------------+-----------------------------------------+
| UPPER(@fav_city) | UPPER(CONVERT(@fav_city USING utf8mb4)) |
+------------------------------------+-----------------------------------------+
| tokyo | TOKYO |
+------------------------------------+-----------------------------------------+
在左侧我们看到,当 UPPER(~)
与二进制字符串一起使用时,输入在输出中保持不变。
当二进制字符串首先转换为右侧的非二进制字符串时,输入将转换为大写。
相关用法
- MySQL UPPER()用法及代码示例
- MySQL UPDATE用法及代码示例
- MySQL UCASE方法用法及代码示例
- MySQL UTC_DATE()用法及代码示例
- MySQL UNIX_TIMESTAMP()用法及代码示例
- MySQL UNION用法及代码示例
- MySQL UNHEX()用法及代码示例
- MySQL UNCOMPRESSED_LENGTH( )用法及代码示例
- MySQL UUID_SHORT()用法及代码示例
- MySQL UNIX_TIMESTAMP方法用法及代码示例
- MySQL UTC_DATE方法用法及代码示例
- MySQL UCASE()用法及代码示例
- MySQL USER( )用法及代码示例
- MySQL UTC_TIME()用法及代码示例
- MySQL UTC_TIME方法用法及代码示例
- MySQL UUID()用法及代码示例
- MySQL UNHEX方法用法及代码示例
- MySQL UTC_TIMESTAMP方法用法及代码示例
- MySQL UTC_TIMESTAMP()用法及代码示例
- MySQL UNCOMPRESS( )用法及代码示例
- MySQL ROUND()用法及代码示例
- MySQL REPEAT()用法及代码示例
- MySQL POWER()用法及代码示例
- MySQL LEAD() and LAG()用法及代码示例
- MySQL IS_IPV4()用法及代码示例
注:本文由纯净天空筛选整理自Arthur Yanagisawa大神的英文原创作品 MySQL | UPPER method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。