我有一张桌子
create table device_entity
(
id uuid not null primary key,
name varchar(255),
metadata hstore
);
此表的元数据字段中包含 'country' = 'uk' 的条目。
此查询返回元数据字段中存在键“国家”的所有条目。
SELECT * from device_entity where metadata ? 'country'
如何选择键“国家”=“英国”的所有条目?