我有一张下表,
CREATE TABLE ProductCode_Timeline
(
"Uuid" uuid,
"Descriptions" text,
"Hierarchy" ltree,
)
在上表"层次结构"列,我想添加uuid
作为路径引用。
像这样的东西,例如
INSERT INTO ProductCode_Timeline (Uuid, Descriptions, Hierarchy) VALUES ( '3a037b24-a7d8-11e6-894d-a4db30217df5', "Test", '');
INSERT INTO ProductCode_Timeline (Uuid, Descriptions, Hierarchy) VALUES ( '4a037b24-a7d8-11e6-894d-a4db30217df5', "Test1", '3a037b24-a7d8-11e6-894d-a4db30217df5');
INSERT INTO ProductCode_Timeline (Uuid, Descriptions, Hierarchy) VALUES ( '5a037b24-a7d8-11e6-894d-a4db30217df5', "Test2", '3a037b24-a7d8-11e6-894d-a4db30217df5.4a037b24-a7d8-11e6-894d-a4db30217df5');
尝试在层次结构路径中添加uuid
时,语法错误不正确(如上例所示)。
如何在层次结构路径中添加Uuid?如何在Postgres中处理这种场景?
提前致谢。