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.
More Related questions...