我想总结特定表中的所有列值并将总数作为双倍。这是我目前的功能
public String sumAll() {
float columntotal = 0;
String[] columns = new String[] {KEY_RPI,
KEY_RLP, KEY_RSK, "sum("+ KEY_RNP +")", KEY_RTP};
Cursor c = mDb.query(PENGELUARAN_TABLE, columns, null, null, null,
null, null);
if (c != null) {
c.moveToFirst();
columntotal = c.getFloat(0);
}
String sumtotal = Float.toString((float)columntotal);
return sumtotal;
}
但是上面的函数只是给了我表格中列的总数。我如何修改这些函数以返回列的总值?