总计直到每个ISO周为止

时间:2019-03-11 13:17:40

标签: postgresql

我坚持创建一列来显示已创建联系人数量的合计数字。

我想实现在C列中可见的内容 enter image description here

const url = environment.apiUrl + '/slug/';
const response = await fetch(url, {
  method: 'POST',
  credentials: environment.credentials === 'include' ? 'include' : 'same-origin',
  headers: {
    'Content-Type': 'application/json'
  },
  body: ...
});

有什么想法吗? 谢谢!

1 个答案:

答案 0 :(得分:0)

我相信您可以将count(x.vid)替换为sum(x.vid) OVER(ORDER BY properties__createdate__value)

这里是SQLFiddle的主意。我建立了一个表来复制您的示例表。如果您已建立了示例的前两列,则应该能够对该行应用该行以创建运行总计。