SQL Introduction
1 min read
What is SQL?
SQL (Structured Query Language) is the standard language for storing, manipulating and retrieving data in relational databases like MySQL, PostgreSQL and SQLite.
With SQL you can:
- Query data from a database
- Insert, update and delete records
- Create and modify tables
SELECT name, email FROM users;
This selects the name and email columns from the users table.