我有一个包含小数的数据库。该列设置为“.. decimal(5,2) not null。我要做的是找到列的总和并使用此代码将其显示在文本字段中..
public int getTotal() {
Cursor cursor = sqliteDatabase2.rawQuery(
"SELECT SUM(thedata) FROM thetable", null);
if(cursor.moveToFirst()) {
return cursor.getInt(0);
}
return cursor.getInt(0);
}
然而,当返回值是一个整数。它应该是 20.75 而不是 20。
我对 SQLite 不是很熟悉,所以请帮忙。