Collections:
UPPER() - Convert String to Upper Case
How to convert a string to upper case using the UPPER() function?
✍: FYIcenter.com
UPPER(str) is a MySQL built-in function that
converts all characters of a given into upper case characters.
For example:
SET @str = 'dba.FYIcenter.com'; SELECT UPPER(@str); -- +-------------------+ -- | UPPER(@str) | -- +-------------------+ -- | DBA.FYICENTER.COM | -- +-------------------+
Reference information of the UPPER() function:
UPPER(str): modstr Returns the string str with all characters changed to uppercase according to the current character set mapping, or NULL if str is NULL. The default character set is utf8mb4. Arguments, return value and availability: str: Required. The string to be converted. modstr: Return value. The converted string. Available since MySQL 4.0.
Related MySQL functions:
⇒ WEIGHT_STRING() - String Sorting Weight
⇐ UNHEX() - HEX to String Conversion
2023-11-13, 1575🔥, 0💬
Popular Posts:
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
How to download and install Microsoft SQL Server Management Studio Express in SQL Server? Microsoft ...
How To Query Tables and Loop through the Returning Rows in MySQL? The best way to query tables and l...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...