cancel
Showing results for 
Search instead for 
Did you mean: 

SUPQuery- GroupBy in SUP 2.1.3

Former Member
0 Kudos

Hi All,

I am using Group by clause of SUPQuery on SUP version - 2.1.3. I wrote a simple query which selects column value from one of the table and added group by clause. But still application is crashing when I am using 'GroupBy' clause.

SUPQuery *query = [SUPQuery getInstance];

[query select:@"gd.VALUE"];

[query from:@"GetData" :@"gd"];

[query groupBy:@"gd.KEYID"];

SUPObjectList *queryResult1 = [GetData findWithQuery:query];

Above query is working fine on SUP version - 2.0.1

Has anyone faced this issue? Can anyone please tell the reason of crashing or alternative to this?

Thanks in advance!

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I am having the same issue now as soon as i put a group by my app crashes. Were you able to solve this problem?