0

我有两个表(TABLE_EXAM,TABLE_RESULT)。这是我的 TABLE_RESULT 的值。

result_id   exam_id   question_id   correct_answer  
  1            2            4              y     
  2            2            5              y       
  3            2            6              n         
  4            2            7              y        

我需要计算exam_id=2 的正确答案='y'。
我尝试以下代码,但它返回 0。

public int calculateResult(int examId,String confirmAnswer)
{
    int correctAnswer=0;
    try
    {
        SQLiteDatabase db=this.getWritableDatabase();

         String selectQuery=("select count(correctAnswer) from result where exam_id ='" + examId + "' and correctAnswer ='" + 'y' +"'" );
        // String selectQuery=("SELECT COUNT(*)FROM result WHERE exam_id ='" + examId + "' and correctAnswer ='" + confirmAnswer +"'" );            
          Cursor cursor = db.rawQuery(selectQuery, null);
        if(cursor.moveToLast())
        {
            correctAnswer=cursor.getInt(3);
        }
    }
    catch(Exception e)
    {
        e.printStackTrace();
    }
    return correctAnswer;
}

在变量 confirm_answer 我通过“y”。
给我一些提示或参考。
任何帮助表示赞赏。
提前致谢

4

1 回答 1

4
select count(*) from TABLE_RESULT where correct_answer="y" and exam id=2;

这是值为 y 且考试 id=2 的总行数

只需尝试运行此查询,然后将您的参数添加到它。

SELECT COUNT(*)FROM result WHERE exam_id =" + examId + " and correctAnswer ='" + confirmAnswer +"'");

以上是我已格式化的您的查询。

希望这对您有所帮助。

于 2012-04-08T05:23:55.383 回答