Skip
Arish's avatar

143. Practice - Concatenation


Exercise: Combine Name and Course

Create "Name is enrolled in Course" string.

Solution

sql
1SELECT name || ' is enrolled in ' || course AS enrollment
2FROM students;