In the New York Restaurants project, the review column of the nomnom table is of type INTEGER, but it has decimal values like 3.5 stored in it - how is this possible? Why was INTEGER data type chosen for this column?
You answered your own question? The data type should be a decimal/float. You get away with integer because SQLite doesn’t enforce data types, but that should not be the target/objective when programming.