CREATE Table and INSERT Data
Create Table CREATE TABLE ( , … PRIMARY KEY ()); Data Types INT, String, Money, char, … Insert Data INSERT INTO VALUES (value1, value2, value3, ...);
READ, SELECT, and WHERE
Selecting specific columns
SELECT FROM ;
Selecting specific rows
SELECT FROM WHERE ;
Updating Single Values and Adding Columns in SQL
UPDATE SET = WHERE = ;
Adding a new column
ALTER TABLE (Add, Delete, or Modify Columns in a Table)
ALTER TABLE ADD ;
DELETE
DELETE FROM WHERE ;
Relationships, Foreign Keys, and Inner Joins
Foreign Key
Links between table
Inner Join