passing multiple records to json_populate_recordset - Mailing list pgsql-general

From Raphael Bauduin
Subject passing multiple records to json_populate_recordset
Date
Msg-id CAONrwUFbuBBUCm+jNNpU7LQ1SV-5O4SWWpX8fFq6ujBcRvwN8w@mail.gmail.com
Whole thread Raw
Responses Re: passing multiple records to json_populate_recordset  (Raphael Bauduin <rblists@gmail.com>)
List pgsql-general
Hi,

I'm experimenting with the json data type and functions in 9.3.
I'm storing json objects of this form in the event column:
{type: 'event_type, products : [ {id:45, 'type': 3, 'gender':'F',..}, ..., {....} ] }

I can issue this query, but notice the limit 1:

select * from json_populate_recordset(null::product, (select  event->'products' from events limit 1));

The result is:

 type | gender |  id  
------+--------+-------
   41 | F      | 40003
   41 | F      | 60043
   41 | F      | 27363
   41 | F      | 27373
   41 | F      | 28563

But all these products come from one event.
Is there a way to return the products from several events?, eg with a limit 2 rather than limit 1?

Thanks

Raph

pgsql-general by date:

Previous
From: Kaare Rasmussen
Date:
Subject: Re: Tree structure
Next
From: Rémi Cura
Date:
Subject: Re: Tree structure