Re: [GENERAL] Finding common hstore key=>value pairs with hstore

2013-01-27 Thread Paul Norman
> From: pgsql-general-ow...@postgresql.org [mailto:pgsql-general- > ow...@postgresql.org] On Behalf Of John R Pierce > Subject: Re: [GENERAL] Finding common hstore key=>value pairs with > hstore > > On 1/27/2013 3:09 AM, Paul Norman wrote: > > I am in a situation where

[GENERAL] Finding common hstore key=>value pairs with hstore

2013-01-27 Thread Paul Norman
I am in a situation where I have two tables, a and b, each with a hstore column called tags. Both tags columns have a GIN index on them. I want to find rows of a and b where the both have a particular hstore key and that key is the same. One way to do this would be SELECT * FROM a JOIN b ON a.tags