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 trialHosam Darwish
14,309 PointsI don't understand what is wrong with my query
Select all addresses from the customer_addresses table. Should be executed like : SELECT * adresses FROM costumer_addresses right?
4 Answers
Steven Parker
231,248 PointsYou have an extra word "addresses" after the asterisk, and it looks like you spelled "costumer_addresses" instead of "customer_addresses".
Hosam Darwish
14,309 Pointsyes, thank you so much
Elita Judjallo
11,965 PointsHi! I struggled there to. but i got it!! SELECT * FROM customer_addresses
Blessed maupa
9,094 PointsSELECT * FROM customer_addresses;
Elita Judjallo
11,965 PointsSELECT * FROM customer_addresses;
veronica stupia
94 Pointsveronica stupia
94 PointsI am having the same issue :
I am putting : SELECT * addresses FROM customer_addresses; and this still says invalid
HELP cannot get past this