我有树结构的表,列是id
, category
,parent_id
现在我需要将一个节点及其子节点复制到另一个节点,在复制时,类别必须相同,但具有新的 id 和 parent_id..
我的输入将是node to copy
&destination node to copy
我已经解释了图像文件中的树结构..
我需要一个功能来做到这一点..,
PostgreSQL 版本 9.1.2
Column | Type | Modifiers
-----------+---------+-------------------------------------------------
id | integer | not null default nextval('t1_id_seq'::regclass)
category | text |
parent_id | integer |
Indexes:
"t1_pkey" PRIMARY KEY, btree (id)
Foreign-key constraints:
"fk_t1_1" FOREIGN KEY (parent_id) REFERENCES t1(id)
Referenced by:
TABLE "t1" CONSTRAINT "fk_t1_1" FOREIGN KEY (parent_id) REFERENCES t1(id)