From the course: Database Foundations: Intro to Databases

Unlock the full course today

Join today to access over 22,600 courses taught by industry experts or purchase this course individually.

Structured Query Language

Structured Query Language

From the course: Database Foundations: Intro to Databases

Start my 1-month free trial

Structured Query Language

- [Instructor] Structured Query Language is the common link between all relational database management platforms. So learning how it works on one platform will enable you to apply those same skills to other databases that you come across. Unlike other programming languages that rise and fall in popularity, SQL is probably the most stable and transferable skill that you can have in IT. Here's a couple of reasons why learning SQL might be easier than you think. First, SQL is designed to be human readable. Command keywords often say exactly what they're going to do. The create command creates objects, the insert command inserts rows into a data table. It's very often the case that you can read through a SQL command and know exactly what it's going to do in very plain language. Second, with SQL you tell the database server what you want to happen, and the server figures out how to do it. This is different from many programming…

Contents