Hi
It seems that you can’t have more than one attribute in a group by clause eg
this works
select multiframeID,min(extNum),count(*) from MultiframeDetector where multiframeID < 100000 group by multiframeID
this does not
select multiframeID,extNum,count(*) from MultiframeDetector where multiframeID < 100000 group by multiframeID,extNum
-> ERROR 4120 (Proxy): Unable to return query results:
Is this expected behaviour?
Cheers
Mike