
Kathuri k
586 Pointssyntax looks ok but throwing error
What's the issue here?
1 Answer

Peter Vann
Treehouse Moderator 35,088 PointsHi Kathuri!
This passes the first challenge:
SELECT first_name || " " || last_name || " <" || email || ">" AS to_field
FROM patrons
This passes the second:
SELECT street || ", " || city || ", " || state || " " || zip || ". " || country AS address
FROM addresses
I hope that helps.
Stay safe and happy coding!