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 Reporting with SQL Working with Text Replacing Strings

Carol Garcia
Carol Garcia
1,875 Points

Code check.

What am I doing wrong? Below is the example code in the previous video, and below that is my version for this challenge.

SELECT street, city, REPLACE(state, "California", "CA"), zip FROM addresses WHERE REPLACE(state, "California", "CA") = "CA";

SELECT REPLACE(email, "@", "<a>") FROM customers WHERE REPLACE(email, "@", "<a>") = "<a>" AS obfuscated_email;

1 Answer

Steven Parker
Steven Parker
229,708 Points

You're pretty close, but:

  • this code is replacing "@" with "<a>", but the challenge asked for "<at>" (with a "t")
  • the alias must come right after the replace function (and before FROM)
  • the challenge wants all the addresses so you don't need any filter (WHERE)
SELECT REPLACE(email, "@", "<at>") AS obfuscated_email FROM customers;
Carol Garcia
Carol Garcia
1,875 Points

Thank you so much, Steven! The breakdown was really helpful!