Exercise: Rename Column
Select marks with alias 'score'.
Solution
sql
1SELECT marks AS score FROM students;With Spaces
sql
1SELECT marks AS "Student Score" FROM students;
Select marks with alias 'score'.
1SELECT marks AS score FROM students;1SELECT marks AS "Student Score" FROM students;