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

Josh Page
Josh Page
1,928 Points

MySQL 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

Josh, mySQL can do what you described.

Andre' Jones
Andre' Jones
26,671 Points

SQL 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
Josh Page
1,928 Points

Ah right thanks guys!