Temporary Tables
- A temporary table is a relation that is created for a session only
- Created with CREATE TEMPORARY TABLE
- Accessible only in current session.
- Dropped when the session ends
- You can not use a foreign key constraint to a temporary table.
- Look at temptable.sql