我有一个表itemmaster在Postgresql.
id| attribute1 | attribute2 | attribute3
1 | Good | Average | Best
我希望输出为json像[{“attribute 1”:“Good”},{“attribute 2”:“Average”},{“attribute 3”:“Best”}]我想使用这个JSON作为嵌套的JSON其他对象,我已经尝试了row_to_json和json对象构建器,但没有得到确切的结果。
2条答案
按热度按时间jfgube3f1#
4xrmg8kj2#
假设您有一个名为
table_attr
表:然后你可以使用这个查询:
输出:
[{“attribute1”:“良好”,“attribute 2”:“平均”,“attribute 3”:“最佳”}]