在单表中用pid字段表示父节点id,查询时要求根据id查找某节点及其所有子节点。
测试的表结构如下:
create table test2( id integer, name varchar, pid integer );
插入测试数据
insert into test2 values(1,'A',null); insert into test2 values(2,'A1',1); insert into test2 values(3,'A2',1); insert into test2 values(4,'B',2);
树结构如下:
1 A
2 ----A1
3 --------B
4 ----A2
根据节点ID查父节点及其所有子节点的简单查询(例如查id=2的节点)
with recursive t(id, name, pid) as ( select id, name, pid from test2 where id=2 union all select t2.id, t2.name, t2.pid from test2 t2 join t on t2.pid=t.id ) select id, name, pid from t order by id;
带路径及树节点深度的查询
with recursive t(id, name, pid, path, depth) as ( select id, name, pid, array[id] as path, 1 as depth from test2 where pid is null union all select t2.id, t2.name, t2.pid, t.path || t2.id, t.depth + 1 as depth from test2 t2 join t on t2.pid=t.id ) select id, name, pid, path, depth from t order by path;
相关推荐
树PostgreSQL的递归查询树PostgreSQL的递归查询树PostgreSQL的递归查询
PostgresSQL是一个很优秀的开源数据库,并提供了针对空间数据的存扩展;这个PPT介绍了PostgresSQL数据库的基本情况
postgressql 连接数据库 和关闭数据库
主要讲解PostgreSql 10.7 数据库的安装流程,包括系统的优化,环境准备,每一步安装的命令。
pgadmin管理工具,支持对postgresqlV11.1以上的版本进行管理。包括存储过程 表分区
16新特性: 1.权限管理 2.逻辑复制增强功能 3.性能提升:并行查询方面的性能提升,比如允许FULL和RIGHT JION在并行模式下执行,支持SIMD 4.全面的监控功能
postgres sql 数据库连接工具
Docker compose部署postgresSql
PowerDesigner16.5+PostgresSQL
连接成功后,便可以进行数据库创建、查询、表管理、索引操作、用户管理和权限设置等一系列数据库管理工作。 **总结** PostgreSQL作为开源数据库的佼佼者,其强大的功能和跨平台性使其成为许多企业的首选。通过理解...
postgressql-ver-11-win64
Postgres数据库SQL注入手册1
利用sqoop导出PostgresSQL的数据时所需的驱动包,只需要将该包放到hive或sqoop的lib目录下即可。
sqoop连接Postgres SQL 的驱动包postgresql-9.3-1102-jdbc41.jar。 利用sqoop导出PostgresSQL的数据时所需的驱动包,只需要将该包放到hive或sqoop的lib目录下即可。
在本项目中,"用postgresSQL实现的数据库library系统"是一个基于PostgreSQL数据库和JSP技术构建的图书馆管理系统。这个系统展示了如何将数据库管理和Web应用相结合,为用户提供图书查询、借阅、归还等基本功能。以下...
SQL(结构化查询语言)是用于管理关系数据库的标准语言,而`psycopg2`则是Python编程语言与PostgreSQL数据库之间的一个接口,它允许Python程序通过SQL与PostgreSQL进行交互。 `psycopg2`库是Python社区中最受欢迎的...
PostGresSQL数据库 window64位 版本是15.4-1
postgresSql docker 镜像
quartz定时任务框架,数据库脚本pgsql版本,tables_postgres.sql; quartz定时任务框架