我尝试了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;
现在我如何获取一个包含点的键?