Hello!
I have read a discussion about death and have several questions:
Case #1
There are several causes of death with different dates in condition_occurrence table.
Should I keep all of them in condition_occurrence table with type_concept_id that has class ‘Death Type’, but choose only one date as a date of death and populate cdm.person.death_datetime field with this date? Or I should remove record with the wrong date of death from condition_occurrence table and add a record to observation table as an alternative date of death?
For example:
condition_occurrence:
record#1: 2014-02-05 ICD9CM: 799 Other ill-defined and unknown causes of morbidity and mortality
record#2: 2014-02-10 ICD9CM: 799.9 Other unknown and unspecified cause of morbidity and mortality
Let’s say we have the rule to choose the earliest date of death as a real date of death.
Therefore cdm.person.death_datetime = 2014-02-05
Option 1:
Should I remove record#2 from condition_occurrence and create a record in observation table?:
condition_occurrence:
record#1: 2014-02-05 ICD9CM: 799 Other ill-defined and unknown causes of morbidity and mortality
observation:
2014-02-10 concept_id = 4306655 ‘Death’
person:
death_datetime = 2014-02-05
Option 2:
Or I can keep 2 records and assign both records type_concept_ids with class ‘Death type’?:
condition_occurrence:
record#1: 2014-02-05 ICD9CM: 799 Other ill-defined and unknown causes of morbidity and mortality
record#2: 2014-02-10 ICD9CM: 799.9 Other unknown and unspecified cause of morbidity and mortality
person:
death_datetime = 2014-02-05
If I understood correctly, observation table might contain several dates of death, but what about condition_occurrence table?
Case 2
There is only death indcator in source data.
Should I create a record in observation table using concept 4306655 ‘Death’? Or storing death date in person table will be enough?
There is a cause of death in source data. It goes to condition_occurrence table. Should I create a record in observation table using concept 4306655 ‘Death’? Or storing death date in person table and cause of death in condition_occurrence table will be enough?
Thank you in advance!