right I need to only get the first key, but sort by the second.
On Mon, Jul 1, 2013 at 10:19 PM, Stanley Iriele <[email protected]> wrote: > Do you care about other keys being mixed in?....I guess are you trying yo > group by that first key that you have? > Well if I put the second item first, like: > > [13023123123, "ueoorp189"] > > How do I query that, given that I don't know what my first value is > going to be, but I do know that my second value is ueoorp189 > > Thanks, > Bryan > > On Mon, Jul 1, 2013 at 10:11 PM, Robert Newson <[email protected]> wrote: >> Views are sorted by their key (the whole key and nothing but the key). >> So make a view with your second item first to get the order you >> require. >> >> B. >> >> >> On 1 July 2013 21:04, Stanley Iriele <[email protected]> wrote: >>> What are the 1st and second values... Couch dB is sorting correctly > you're >>> just jot giving it the data it needs to sort on... So what values are you >>> trying to sort by? >>> On Jul 1, 2013 12:48 PM, "bryan rasmussen" <[email protected]> >>> wrote: >>> >>>> Hi, >>>> >>>> I have a view that outputs like the following: >>>> >>>> ["ueoorp189", 13023123123] >>>> >>>> ["ueoorp189", 13023123125] >>>> >>>> ["ueoorp189", 13023153123] >>>> >>>> ["ueoorp189", 13073123123] >>>> I want a query that sorts it descending with the highest value in the >>>> second key >>>> >>>> From what I've read this should be possible but I am not finding my >>>> way to making it work. >>>> >>>> Do I have to do a map reduce function to do it? >>>> >>>> Thanks, >>>> Bryan Rasmussen >>>>
