SQL (Structured Query Language) is the standard language for working with relational databases — storing, querying, and managing data organized into tables (rows and columns). It's declarative: you describe what data you want, and the database engine figures out how to retrieve it efficiently.
A simple query
name, email
users
active
name;
