
Charity Thomas
Front End Web Development Techdegree Student 6,881 PointsHello. I am stuck on this challenge. Can you please help? Thanks!
SELECT first_name || " " || last_name || " " || <email> WHERE to_field AS "To" FROM patrons;
1 Answer

Peter Vann
Treehouse Moderator 35,088 PointsHi Charity!
This passes the first task:
SELECT first_name || " " || last_name || " <" || email || ">" AS to_field
FROM patrons;
This passes the second task:
SELECT street || ", " || city || ", " || state || " " || zip || ". " || country AS address
FROM addresses
I hope that helps.
Stay safe and happy coding!
Charity Thomas
Front End Web Development Techdegree Student 6,881 PointsCharity Thomas
Front End Web Development Techdegree Student 6,881 PointsThank you so much @ Peter Vann!!!!