thanks for idea...
Chris Hostetter wrote:
: I want to implement search which in SQL equivalent looks like
: select itemId, min(price) from
: where
: groupBy itemId
: Is it possible to achieve?
Not easily. The most straightforward approach I can think of is to write
your own HitColl
: I want to implement search which in SQL equivalent looks like
: select itemId, min(price) from
: where
: groupBy itemId
: Is it possible to achieve?
Not easily. The most straightforward approach I can think of is to write
your own HitCollector that builds up a Hash of itemId => pri
hi all.
I have indexed table from database into index and it looks like:
itemId is not unique.
I want to implement search which in SQL equivalent looks like
select itemId, min(price) from
where
groupBy itemId
Is it possible to achieve?
--
regards,
Volodymyr Bychkoviak
--