RE: [sort order]how to support sort by max(field1),then field2 desc.

2013-05-07 Thread Jack Liu
27;ll have to run 2 searches with 2 sorts - the first to get max(field1) and the second sorted by field2. If you don't want the max(field1) doc to appear in the second list you'll have to filter it out somehow. -- Ian. On Tue, May 7, 2013 at 6:49 AM, Jack Liu wrote: > As we know,

[sort order]how to support sort by max(field1),then field2 desc.

2013-05-06 Thread Jack Liu
As we know, the we can sort by multi-fields, such as field1 , then field2. But I have another scenario: We need pick up the max(field1) record first, then sort by field2 for others records. Anyone can help me? Thanks in advance. Thanks Jack