如何针对SQL中的每个日期映射过去七天的滚动?

时间:2017-01-10 11:44:26

标签: sql postgresql

我们假设表中有两个日期字段:for_date和from_date。 我想要类似的东西 通过编写查询在下面作为输出: enter image description here

  • 对于for_date中的每个日期,它应返回for_date,后跟过去6个日期
  • 提供SI no作为此问题的参考。

提前致谢。

1 个答案:

答案 0 :(得分:0)

#include <stdio.h> #include <conio.h> #define MAX 25 char welcomeMsg[]="Please enter your name without * or #"; char errorMsg[]="Error, please try again"; void main(void) { int j; char name[MAX],input; j=0; printf("%s\n", welcomeMsg); do { gets_s(name,24); if(name[j]=='#'|| name[j]=='*') { printf("%s\n", errorMsg); j=0; continue; } name[j]=name[j]+j; j++; }while(name[j]<25&&name[j]!='\n'); name[j]=0;NULL; puts("\nYour Name is"); printf("%s",name); } 怎么样?

generate_series()