Structured Query language (SQL) is a database query language. This class will give an overview to databases and the basics on writing queries.
Databases are systems built for storing and retrieving data. There are a lot of lessons to be learned about constructing applications by studying the options provided by databases.
Syntax
SELECT first_name, last_name FROM users;
Common commands
- SELECT
- FROM
- JOIN
- WHERE
Level
Topics