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

Josh Page
1,928 PointsMySQL or SQL For Mass Database
Hi, I am in the process of building a large scale social network style web app open to the public. I am currently looking to build it in php. Should I use mysql or just SQL? I will need it to be fast, and able to handle up to 100,000 rows with 8 columns as well as multiple requests simultaneously. What would you guys recommend?
(or would rails be best???)
Thanks Josh
3 Answers

James Gill
Courses Plus Student 34,935 PointsJosh, mySQL can do what you described.

Andre' Jones
26,671 PointsSQL and MySQL arent the same thing. SQL is the language you use to query and manipulate a database like MySQL. Lots of big corporations use MySQL so I am sure it could handle that many rows as long as your database schema is structured correctly.

Josh Page
1,928 PointsAh right thanks guys!