Different types of SQL tables
- Permanent tables (i.e., created using the create table statement)
- Derived tables (i.e., rows returned by a sub-query and held in memory)
- Temporary tables (i.e., volatile data held in memory)
- Virtual tables (i.e., created using the create view statement)
Comments
Post a Comment