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

Java Hibernate Basics Data Persistence & ORMs SQL Review

Using the following data table, complete the UPDATE statement below so that 'Objective-C Basics' in the `treehouse` tabl

Using the following data table, complete the UPDATE statement below so that 'Objective-C Basics' in the treehouse table is updated to 'Swift Basics' (use uppercase for SQL keywords):

id          course
--------------------------------------------
1           Spring Basics
2           Objective-C Basics
3           Animations and Transitions
4           Nodejs to Rule the World
UPDATE treehouse ___ ___ = ___ ___ id= ___

1 Answer

KWASI NSIAH
KWASI NSIAH
10,578 Points

UPDATE treehouse SET course= 'Swift Basics' WHERE id=2