Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
AgensGraph 的结果有引号。
我不想
agens=# match (n) return n.value; value -------- "test" (1 row)
我期望修剪报价的功能或程序。
您可以使用函数“btrim”来删除不必要的引号。
agens=# select btrim( n.value::text, '"' ) from ( match (n) return n.value ) as n; btrim ------- test (1 row)
您必须在查询的 SQL 部分上使用 trim 来删除引号。