postgreSQL hstore如果包含值

时间:2014-11-27 15:14:40

标签: sql postgresql

有没有办法检查查询本身的hstore中是否已存在值。

我必须每行存储各种值(每行是“项目”)。 我需要能够检查id是否已存在于其中一个hstore行的数据库中,而不是首先选择所有内容并在php中执行循环等。 hstore似乎是唯一提供类似内容的数据类型,并且还允许您将该行的列选择为数组。

Hstore可能不是存储数据的最佳数据类型,但没有其他更好的可用。

整个项目使用9.2,我无法改变 - json是9.3。

1 个答案:

答案 0 :(得分:5)

exist()函数测试是否存在密钥。要确定密钥是否为' 42'存在于hstore中的任何位置。 。

select *
from (select test_id, exist(test_hs, '42') key_exists
      from test) x
where key_exists = true;
test_id  key_exists
--
2        t

svals()函数将值作为集合返回。您可以查询结果以确定是否存在特定值。

select *
from (select test_id, svals(test_hs) vals
      from test) x
where vals = 'Wibble';

hstore Operators and Functions


create table test (
  test_id serial primary key,
  test_hs hstore not null
);

insert into test (test_hs) values (hstore('a', 'b'));
insert into test (test_hs) values (hstore('42', 'Wibble'));