Use an Alias
Let's go back to the reasons_to_learn_sql
table.
Remember that query we did?
Here it is again:
SELECT reason
FROM reasons_to_learn_sql;
This table has a column named reason
.
Suppose we like the word "benefit" better.
For this challenge, select the reason
column but rename it to benefit
instead.