Last active
November 3, 2020 23:38
-
-
Save schacon/4667d1ffaf34a6f2d61dadf0aab77cf3 to your computer and use it in GitHub Desktop.
Revisions
-
schacon revised this gist
Nov 3, 2020 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,8 +3,8 @@ select month, months_out from ( GENERATE_ARRAY(0, DATE_DIFF(CURRENT_DATE(), month, MONTH)) as months, from UNNEST( (select GENERATE_DATE_ARRAY(CAST([STARTING_DATE] AS DATE), CAST(max(date_field) AS DATE), INTERVAL 1 MONTH) as date from [SOME_TABLE_WITH_A_DATE_FIELD]) ) as month ) CROSS JOIN UNNEST(months) as months_out -
schacon created this gist
Nov 3, 2020 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ select month, months_out from ( select month, GENERATE_ARRAY(0, DATE_DIFF(CURRENT_DATE(), month, MONTH)) as months, from UNNEST( (select GENERATE_DATE_ARRAY(CAST('2017-10-01' AS DATE), CAST(max(start_time) AS DATE), INTERVAL 1 MONTH) as date from pg.chat_sessions) ) as month ) CROSS JOIN UNNEST(months) as months_out