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 trialMatthew Delange
26,584 PointsUsing 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
155,055 PointsHi Matthew,
Assuming that this is the objective:
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!
Matthew Delange
26,584 PointsMatthew Delange
26,584 PointsThank you CJ