Table vs View
A table stores rows on disk. A view stores a query. SELECT from both looks similar. INSERT goes to a table (and only some views). Indexes live on tables. DROP TABLE destroys data. DROP VIEW destroys the saved query, not the base data.
Trap — ‘view is a virtual table’ without saying the data still lives in base tables.
On the example next to this theory — Table vs View — a view is a stored SELECT you can query like a table.
Exam tip
Table holds data. View holds a query.