SQL For Interview Prep - SQL Interview Prep Cheatsheet - Codecademy
SQL For Interview Prep - SQL Interview Prep Cheatsheet - Codecademy
Column Constraints
Column constraints are the rules applied to the CREATE TABLE student (
values of individual columns:
id INTEGER PRIMARY KEY,
PRIMARY KEY constraint can be used to
uniquely identify the row. name TEXT UNIQUE,
UNIQUE columns have a different value for grade INTEGER NOT NULL,
every row. age INTEGER DEFAULT 10
NOT NULL columns must have a value.
);
DEFAULT assigns a default value for the
column when no value is specified.
There can be only one PRIMARY KEY column per
table and multiple UNIQUE columns.
Outer Join
Inner Join
UPDATE Statement
UNIQUE
Primary Keys
SELECT Statement
ORDER BY Clause
DISTINCT Clause
LIMIT Clause
GROUP BY Clause
HAVING Clause
WHERE Clause