Database / SQLite Interview questions
What are the supported data types in SQLite?
SQLite uses a small set of storage classes rather than the rigid, fixed-width types found in most other database systems — each value stored is tagged with one of these classes based on the value itself, regardless of the column's declared type.
| NULL | INTEGER | REAL | TEXT | BLOB |
| Missing value. | Signed integer, variable size. | Floating-point number. | Text string. | Raw binary data, stored exactly as given. |
CREATE TABLE example ( id INTEGER, name TEXT, score REAL, data BLOB );
This is fundamentally different from a fixed-type system: a column declared INTEGER can still
technically store a text value in SQLite (subject to the column's type affinity), since the storage class is
ultimately determined by the value, not strictly enforced by the declared column type the way it would be in
most other SQL databases.
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...
