Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Franklin Alexander
3,729 PointsVery confused by this question: Write the SQL query to select 'name' and the 'price' from the 'products' table
I tried:
php
$db->query('SELECT name, price FROM products');
and I tried
php
query('SELECT name, price FROM products');
and also
php
$results = $db->query('SELECT name, price, FROM products');
to no avail. Am I misreading the question? Not sure what else to try! I can only type one line in the answer section, so if anyone can see what I am missing, please do tell.
2 Answers

Henrik Christensen
Python Web Development Techdegree Student 38,322 PointsYou're doing a SQL course as part of the PHP track? In that case you should just write like this:
SELECT name, price FROM products

Franklin Alexander
3,729 PointsThanks Henrik. Guess I was making it more complicated than it had to be!