Name

LOWER( )

Synopsis

LOWER(string)

This function converts a string of text or a column given to all lowercase letters. It is synonymous with LCASE( ).

SELECT course_id AS 'Course ID',
LOWER(course_name) AS Course
FROM courses;

This statement displays the name of each course in all lowercase letters.

Get MySQL in a Nutshell now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.