Collections:
LOWER() - Convert String to Lower Case
How to convert a string to lower case using the LOWER() function?
✍: FYIcenter.com
LOWER(str) is a MySQL built-in function that
converts all characters of a given into lower case characters.
For example:
SET @str = 'dba.FYIcenter.com'; SELECT LOWER(@str); -- +-------------------+ -- | LOWER(@str) | -- +-------------------+ -- | dba.fyicenter.com | -- +-------------------+
Reference information of the LOWER() function:
LOWER(str): modstr Returns the string str with all characters changed to lowercase 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:
⇒ LPAD() - Left-Padding String
⇐ LOCATE() - Locate Substring Starting at N
2023-11-12, 1382🔥, 0💬
Popular Posts:
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
How To Start MySQL Server in MySQL? If you want to start the MySQL server, you can run the "mysqld" ...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
What Happens If the UPDATE Subquery Returns Multiple Rows in SQL Server? If a subquery is used in a ...
How To Connect the Oracle Server as SYSDBA in Oracle? This is Step 4. The best way to connect to the...