标签: postgresql hstore
select * from myTable where 'my-tag' = ANY (myHstore -> 37);
myHstore col具有理想的数据,如下所示:
37 -> {'cheese', 'ham', 'myTag'} 38 -> {'lemons', 'ham', 'myTag'}
我只想返回一行,我该如何实现?