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 trialFranklin 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!