我在iphone应用程序中从数据库获取数据,我想从“价格”列中获取最大数量 这段代码不起作用
for(int *i=0; i <= [Rows count]; i++){
Dict = [Rows objectAtIndex:i];
if([[Dict objectForKey:@"Price"]intValue] > MaxNum){
MaxNum = [[Dict objectForKey:@"Price"]floatValue];
}
}
答案 0 :(得分:0)
如果您使用核心数据,请查看此处:Querying max, min and other via Core Data
如果你使用sqlite,这是一个简单的sql请求:
SELECT MAX(价格) 来自yourtables 在哪里预测;