What is SQL?
Structured Query Language — the standard language for managing and querying data in relational databases.
SQL is used to create, read, update, and delete data in relational databases. Key statements include SELECT (query), INSERT (add), UPDATE (modify), DELETE (remove), CREATE TABLE, and ALTER TABLE.
SQL supports complex operations like JOINs (combining tables), GROUP BY (aggregation), subqueries, transactions, and views. Major SQL databases include PostgreSQL, MySQL, SQL Server, and Oracle.