Database / SQLite Interview questions
What is the difference between a SQLite VIEW and a TABLE?
A TABLE physically stores its own rows on disk; a VIEW stores no data of its own
at all — it's just a saved query definition that's re-executed against the underlying tables every time
you select from it.
| TABLE | VIEW |
| Stores its own physical data. | Stores only a query definition; no physical data. |
| Can be directly inserted into, updated, deleted from. | Generally read-only (some simple views can be updatable, with restrictions). |
| Data persists independently of any query. | Always reflects the current state of the underlying tables. |
CREATE TABLE t (id INTEGER, name TEXT); -- stores data CREATE VIEW v AS SELECT id, name FROM t; -- stores only the query
Because a view has no storage of its own, it can never become "stale" relative to the tables it's built from — there's nothing to refresh, since the underlying query simply runs fresh every time.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
