Search Postgresql Archives

passing multiple records to json_populate_recordset

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux