Skip to content

Commit

Permalink
Merge branch 'issue-445' of github.com:OHDSI/DataQualityDashboard int…
Browse files Browse the repository at this point in the history
…o issue-445
  • Loading branch information
MaximMoinat committed Jan 5, 2024
2 parents dccea24 + 9c43666 commit cdb6db7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions inst/sql/sql_server/field_plausible_after_birth.sql
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@ FROM
CAST(CONCAT(
p.year_of_birth,
COALESCE(
RIGHT('00' + CAST(p.month_of_birth AS VARCHAR), 2),
RIGHT('0' + CAST(p.month_of_birth AS VARCHAR), 2),
'01'
),
COALESCE(
RIGHT('00' + CAST(p.day_of_birth AS VARCHAR), 2),
RIGHT('0' + CAST(p.day_of_birth AS VARCHAR), 2),
'01'
)
) AS DATE)
Expand All @@ -67,4 +67,4 @@ FROM
}
WHERE cdmTable.@cdmFieldName IS NOT NULL
) denominator
;
;
2 changes: 1 addition & 1 deletion inst/sql/sql_server/field_plausible_before_death.sql
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*********
PLAUSIBLE_BEFORE_DEATH
Chedcks for events that occur more than 60 days after death (PLAUSIBLE_BEFORE_DEATH == Yes).
Checks for events that occur more than 60 days after death (PLAUSIBLE_BEFORE_DEATH == Yes).
Denominator is number of events with a non-null date, of persons who died.
Parameters used in this template:
Expand Down

0 comments on commit cdb6db7

Please sign in to comment.