Create Temporary Tables
Why Create Temporary Tables?
temporary tables
will be deleted when currentsession is terminated
.- Fater than creating a real table
- useful for complex queries using subset and joins
How to Create a Temporary Table
Syntax of creating a temporary table
CREATE TEMPORARY TABLE Sandals AS (
SELECT * FROM shoes WHERE shoe_type = 'sandals'
)
In SQLite Syntax