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 trial

PHP Using PHP with MySQL Connecting PHP to MySQL Selecting Products

morgan nokringer
morgan nokringer
3,576 Points

i don't any langage to do that before where can i do to select name in product?

Write the SQL query to select 'name' and the 'price' from the 'products' table. is for this exercice any part of the chapter say how to select a column form a database how can i do that

2 Answers

() SELECT name, price FROM products ()

Henry Goh
Henry Goh
20,201 Points

Like what JJ answered. To select specific columns, you need to declare the column/field names after the SELECT statement.

SELECT name, price FROM products