SQL (Structured Query Language) is the universal language for working with databases. It lets you create, query, update, and manage relational databases like MySQL, PostgreSQL, and SQLite.
To start running SQL queries locally or online, you can use:
SELECT name, age
— fetches the name and age columnsFROM users
— specifies the users
tableWHERE age > 25
— filters records where age is greater than 25