我正在尝试在postgresql中创建动态透视。我的查询包含3个维度,其中一个包含case语句。和一种措施。我已经尝试过各种在Web上找到的解决方案,但是都无法正常工作。 我正在寻找一个将普通查询转换为数据透视表的脚本。请帮助我。
答案 0 :(得分:0)
基本上,您有3种选择:
代码段可指导您完成组件的postFetch中的非规范化过程:
function(data){
var resultset = data.resultset;
var metadata = data.metadata;
// doStuff - this is the bit you'll have to code according to your needs. The resultset array has 1 element for each row of data; the metadata array holds metadata info such as colName, colType and output index.
var newResultset = someFunction(resultset);
var newMetadata = someOtherFunction(metadata);
// set data to the new values
data.resultset = newResultset;
data.metadata = newMetadata;
// return the modified data object to the component
return data;
}