Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Databases

Using the "users" table. Select the "email" column as all lower case and alias it as "lower_email"

Know this is simple and I'm just tired just trying to finish this up before I turn in for the night...can I get some help??

1 Answer

Chase Marchione
Chase Marchione
155,055 Points

Hi Matthew,

Assuming that this is the objective:

https://teamtreehouse.com/library/database-foundations/sql-calculating-aggregating-and-other-functions/string-functions-2

  • You'll want to use the LOWER function, so that the data from the email column appears lower cased in the results returned.

  • To alias the column (to rename the column, though only for the results returned), you'll need to use the AS keyword.

SELECT LOWER(email) AS "lower_email" FROM users;

Hope this helps!

Thank you CJ