英文: Simplify a chain of computations 问题 以下是翻译好的 SQL 查询部分: 原始查询: SELECT time, close - LAG(close) OVER...
用上一行的值填充空白值
英文: Fill in Nulls with Row above 问题 我真的很困扰,要创建'level1 question'和'level2 question'列的一...
如何计算累积条目超过阈值的日期?
英文: How to calculate the date when the sum of entries exceeded the threshold? 问题 我想知道何时营业额达到30,以前面的情...
只偏移表格中的一列,该表格有2列?
英文: Offset just one column in table that has 2 columns? 问题 我有一个包含两列的表,我将在查询中将其与另一个表连接起来。我不会粘贴/解释与该连接...
MySQL最小最大历史值
英文: MYSQL Min Max Historic Values 问题 我有一个MYSQL表格,格式如下: 保险 日期 价值 A 2020-01-01 2 A 2020-02-01 5 A 2020...
如何获取每个组的最新的n条记录并将它们聚合成一个数组
英文: How to get the most recent n records per group and aggregate them into an array 问题 我明白这是一个常见问题,我...
获取每个月的最后日期的MySQL记录
英文: MySQL get records of last date of each month 问题 我需要根据数据库表中记录的日期获取每个月的最后日期的记录。现在,如果我使用以下查询从我的表中获取...
移动平均值,涵盖可变数量的行。
英文: Moving AVG over variable number of rows 问题 在Snowflake中,我想为我的数据计算一个移动平均值,但平均值的行数可以变化。具体来说,我想将在当前行...
窗口函数识别每月的第1、2、等等星期几。
英文: window function identifying the 1st, 2nd, etc. day of week of the month 问题 我有一个实用的日历表格,看起来像这样: 日...
创建一个新列,其中包含按另一列分组或汇总的唯一值列表。
英文: Make a new column with list of unique values grouped by, or over, another column in Polars 问题 在 ...
6