在管理员中查看 postgresql json table 作为 (sortable) table

Viewing a postgresql json table in adminer as a (sortable) table

正在管理员中查看 json table 作为 (sortable) table

我在数据库 table 中有一个 jsonb 字段,我希望能够将其保存为 Adminer 中的视图,以便我可以快速搜索和排序与标准数据库类似的字段 table.

我想知道 json-column adminer plugin 是否有帮助,但我不知道如何使用它。

我正在使用 adminer docker image,我相信它已经内置了插件。

如果我有这样的数据库(有人好心地把 this fiddle 放在前面的问题中)

CREATE TABLE prices( sub_table JSONB );

INSERT INTO prices VALUES
('{ "0": {"Name": "CompX", "Price": 10, "index": 1, "Date": "2020-01-09T00:00:00.000Z"},
    "1": {"Name": "CompY", "Price": 20, "index": 1, "Date": "2020-01-09T00:00:00.000Z"},
    "2": {"Name": "CompX", "Price": 19, "index": 2, "Date": "2020-01-10T00:00:00.000Z"}
}');

并查看 table

的子集
SELECT j.value
  FROM prices p
 CROSS JOIN jsonb_each(sub_table) AS j(e)
 WHERE (j.value -> 'Name')::text = '"CompX"'

我想在管理员中看到以下内容table

| Date                     | Name  | Price | index |
| ------------------------ | ----- | ----- | ----- |
| 2020-01-09T00:00:00.000Z | CompX | 10    | 1     |
| 2020-01-10T00:00:00.000Z | CompX | 19    | 2     |
|                          |       |       |       |

相对于:

| value                                                        |
| ------------------------------------------------------------ |
| {"Date": "2020-01-09T00:00:00.000Z", "Name": "CompX", "Price": 10, "index": 1} |
| {"Date": "2020-01-09T00:00:00.000Z", "Name": "CompX", "Price": 10, "index": 1} |

编辑 - 基于 a-horse-with-no-name 答案。下面保存一个带有适当列的视图,然后可以在 Adminer 中以与标准 table.

相同的方式 searched/sorted
CREATE VIEW PriceSummary AS
select r.*
from prices p
  cross join lateral jsonb_each(p.sub_table) as x(key, value)
  cross join lateral jsonb_to_record(x.value) as r("Name" text, "Price" int, index int, "Date" date)


json-column 管理员插件将在某种程度上完成这项工作,因为它将更好地显示 JSON 值。

这是一个最小的 docker-compose.yml,它创建了一个 postgres conatiner 并将管理员链接到它。要在管理员容器中安装插件,您可以使用环境变量 ADMINER_PLUGINS,如下所示:

version: '3'
services:
  db:
    image: postgres
    restart: always
    environment:
      POSTGRES_PASSWORD: example

  adminer:
    image: adminer
    restart: always
    environment:
      - ADMINER_PLUGINS=json-column tables-filter tinymce
    ports:
      - 9999:8080

localhost:9999 访问管理员网站 UI。使用 username: postgres, password: example 连接到 postgres database.

当您编辑包含 JSON 列的 table 时,它将显示如下:

没有自动转换,但您可以将 JSON 值转换为记录,以便于显示:

select r.*
from prices p
  cross join lateral jsonb_each(p.sub_table) as x(key, value)
  cross join lateral jsonb_to_record(x.value) as r("Name" text, "Price" int, index int, "Date" date)
where r."Name" = 'CompX'

Online example