Sequence – executing one instruction after another
Selection is a program branching out depending on whether a condition is met or now
Iteration – repeating sections of code
For loops – count controlled loops
While loops – condition controlled loops
Do until – code executes at least once before program is checked
SELECT which fields to be returned
FROM name of table
WHERE records can meet a condition
Wildcard - *
Procedures – carry out a task and provide structure to code
Functions – carry out a task, return a value, and create reusable program components
Def roll_a_dice():