SQL stands for Structured Query Language. It is used to communicate with and manipulate databases.
SQL is the standard language for relational database management systems. It allows you to:
CREATE TABLE Users (
id INTEGER PRIMARY KEY,
name TEXT
);
INSERT INTO Users (name) VALUES ('Alice'), ('Bob');
SELECT * FROM Users;