Home > Database > Mysql Tutorial > How to use the UPPER() function in MySQL

How to use the UPPER() function in MySQL

王林
Release: 2023-05-26 12:04:05
forward
1585 people have browsed it

UPPER()

UPPER(str) and UCASE(str) functions are used to convert strings to uppercase, for example:

SELECT UPPER('MySQL字符串函数') AS str1, UCASE('MySQL字符串函数') AS str2;
str1          |str2          |
--------------+--------------+
MYSQL字符串函数|MYSQL字符串函数|
Copy after login

The above is the detailed content of How to use the UPPER() function in MySQL. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:yisu.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template