在sqlite中查找是否有學號為123的記錄,如果沒有的話下面怎麼來判斷
Cursor result = db.rawQuery("SELECT 學號 FROM grade WHERE 學號 = 123", null);
if(???){
Toast.makeText(TheacherView.this, "學號不存在", Toast.LENGTH_SHORT).show();
大家看看,問號這裡該寫啥。
用select count(*)from table where...