Skip
Arish's avatar

107. Practice - LENGTH


Exercise: Course Name Length

Get course names with their lengths.

Solution

sql
1SELECT course, LENGTH(course) AS course_length
2FROM students;