SQL Introduction

What is SQL?

SQL stands for Structured Query Language. It is used to communicate with and manipulate databases.

Why Learn SQL?

SQL is the standard language for relational database management systems. It allows you to:

Example

CREATE TABLE Users (
  id INTEGER PRIMARY KEY,
  name TEXT
);
INSERT INTO Users (name) VALUES ('Alice'), ('Bob');
SELECT * FROM Users;