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

Marissa Allison
Marissa Allison
4,095 Points

Can you explain why my Challenge Response is incorrect - it seems to work in MySQL server!

The Challenge Question for "Database Foundations - How to Limit Results"does not seem to give me a correct answer no matter how I change it. But I tested on MySQL server and it appeared to work. The question is "Get the 101st to 200th actors from the actors table."

1 Answer

Have you tried:

SELECT * FROM actors LIMIT 100,100;