下面的代码是从MySql数据库中获取数量的总和。
'的 deger '返回 {" SUM(数量)":75}
我想采取' 75 '从那个对象。
我试过了;
Scanner ob=new Scanner(System.in);
int arr[]=new int[5];
for(int i=0;i<arr.length;i++)
{
arr[i]=ob.nextInt();
}
由于SUM是保留字,因此不起作用。
deger.SUM(quantity)
答案 0 :(得分:0)
感谢@gview。
添加&#39; 作为数量&#39;在SELECT之后,解决了这个问题。
public void doSomething(View view){
//define and start intent
//Show a toast, etc
}