Skip to content

Commit

Permalink
fixing ages in config (#1069)
Browse files Browse the repository at this point in the history
  • Loading branch information
freemabd authored Nov 18, 2024
1 parent 9741a15 commit ce548a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SELECT p.person_id,
p.year_of_birth,
p.birth_datetime,
CASE
WHEN d.death_date IS NOT NULL THEN p.birth_datetime END birth_datetime_not_deceased,
WHEN d.death_date IS NULL THEN p.birth_datetime END birth_datetime_not_deceased,
p.gender_concept_id,
CASE
WHEN gc.concept_name = 'Male' THEN 'Man'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ SELECT p.person_id,
p.year_of_birth,
p.birth_datetime,
CASE
WHEN d.death_date IS NOT NULL THEN p.birth_datetime END birth_datetime_not_deceased,
WHEN d.death_date IS NULL THEN p.birth_datetime END birth_datetime_not_deceased,
p.gender_concept_id,
CASE
WHEN gc.concept_name = 'Male' THEN 'Man'
Expand Down

0 comments on commit ce548a0

Please sign in to comment.