如何使用postgres jsonb_extract_path_text()函数查询其中包含点的json键?

时间:2018-06-01 04:58:00

标签: json postgresql jsonb

我尝试了postgres的 jsonb_extract_path_text()功能。当我尝试为其中包含点的键提取值时,如下所示

{
"first.name": "first name",
"last.name":"last name"
}

它不会给出任何结果但是为null。这是我试过的查询。

SELECT jsonb_extract_path_text(users.properties::jsonb,'first.name') as name FROM users where id=1;

现在我如何获取一个包含点的键?

0 个答案:

没有答案