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

Python Using Databases in Python Meet Peewee Meet Peewee, Our ORM

What is a Database?

I am having a hard time understanding what is being said in this introduction video of this course.

I don't have a clue what SQL means, what a "SQL server" is , and why I should connect to it.

Simply, I've never worked with Databases before.

Should I go ahead and do all 353 minutes of the Database course, before being able to understand enough to continue with this Python course, or is there somewhere I could get a general introduction to Databases quickly?

1 Answer

Steven Parker
Steven Parker
229,744 Points

A database is like an electronic library. It's where information is kept and ordered to make it easy to find and retrieve.

SQL simply stands for "Structured Query Language", which is the language most database systems communicate with.

An SQL server is just a database system (a "library") that uses that language.

Before comitting to an in-depth Database study, you might just start with SQL Basics. That's probably enough to get you going.

I hope that helps. Happy coding!   -sp:sparkles:

Thank you for that recommendation. That course seems perfect.

Thanks!