LOWER()
LOWER(string)This function converts a given string to all lowercase letters. It is an alias of 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.