Hi,
I have a bucket named log
which has a fields
event_date
session_id
-
info
`
I’m trying to run a query which looks like
select ??? from log
group by session_id
My problem is that each session_id can have many event_date-s. In my group by N1QL query I want to select all info fields that matches to the MAX(event_date).
I wish I could post here what I’ve tried but there is nothing really to post.
Thanks for any help.