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

Databases Modifying Data with SQL Updating Data in a Database Updating Data With SQL

Modifying sql data

We have an eCommerce database and it has a products table. It has the columns id, name, description and price. The warehouse is closing down. There's a clearance sale and all products need to be priced 0.99.

1 Answer

Steven Parker
Steven Parker
229,657 Points

It looks like you just quoted the instructions here, it's not clear what kind of issue you are having.

But here's a generic hint: an UPDATE query that has no filter (no WHERE clause) will act on every record of the table.

If that's not what you needed, please ask a specific question.