-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
init code breakdown today lineup metric to recurr and non recurr
- Loading branch information
1 parent
1356dee
commit 432d8c2
Showing
2 changed files
with
28 additions
and
5 deletions.
There are no files selected for viewing
This file contains 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 characters
This file contains 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 characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
select | ||
due_date_id,td_repeatFlag,count(*) as cnt from | ||
|
||
( | ||
select * from obt where | ||
completed_date_id is null | ||
and l_is_active = '1' | ||
and td_kind = 'TEXT' | ||
and fld_folder_name not in ('🚀SOMEDAY lists','🛩Horizon of focus','💤on hold lists') | ||
and l_list_name not like '%tickler note%' | ||
) new | ||
where due_date_id is not null | ||
group by due_date_id,td_repeatFlag | ||
having td_repeatFlag = 'nan' |