When creating an Sqlite table, the value of a floating-point field type is defined as decimal (15.2). Here 2 indicates the number of decimal points, and 15 indicates the total number of valid digits.
, ,
create table testing(numberField decimal(15,2))
insert into testing values(9999999999999.99)
.
,
insert into testing values(25.4)
25.4 sqlite. , .