SQLite Forum

storing number with 2 decimal place
Login
Save it as string.

```
create table t(s);
insert into t values(printf('%.2f',0));
select * from t;
```