The document provides an introduction to SQL, including:
- SQL is a standard language for accessing and manipulating databases. It allows users to execute queries, retrieve, insert, update and delete data from databases.
- RDBMS (Relational Database Management System) is the basis for SQL and modern database systems like MySQL, SQL Server, Oracle etc. Data is stored in database objects called tables which consist of columns and rows.
- The CREATE DATABASE and CREATE TABLE statements are used to create databases and tables. Columns are given data types and tables can be populated with data using the INSERT statement.
- Constraints like NOT NULL, UNIQUE, PRIMARY KEY etc are used to limit the type of data that