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

Why SQLite for Databases track?

Hey,

I am soon to be finished with the databases track, however, I am worried that taking this track will not help me that much considering I will most likely not be working in a SQLite environment. I did some research and SQLite doesn't seem to be that popular, should I be concerned with having to do research with new database environments or are the principle pretty much the same.

Thanks

Simon Coates
Simon Coates
28,694 Points

Some SQL syntax is shared but all of the major DBs have some specific syntax. eg. i think sqllite uses a "random" function, where MySQL use 'rand'. I think the limit/offset commands may differ between some databases (oracle, sql server, mysql). A lot of job adverts list a particular db's version of SQL, rather than saying just SQL.

1 Answer

Steven Parker
Steven Parker
229,732 Points

Every database is a bit different.

I work with several, and each has a few unique functions or keywords or does something a bit differently. But the vast majority of common tasks are done with SQL keywords and query structures that are the same in all of them.

If you want to learn the unique quirks of a specific database other than SQLite, these courses wont help. But if you're just interested in learning SQL itself, most of what you learn in these courses will apply to any database you use.