We want to add the PI (Present illness) values, extracted from the discharge summary description, into the observation table
In order to find the correct observaiton_concept_id of the PI, we wrote the following SQL query.
“select * from [dbo].[CONCEPT]
where CONCEPT_NAME like ‘%present%’ and CONCEPT_NAME like ‘%illness%’”
Below are searched concept_ids and concept_names.
- 3013360 (History of present illness)
- 4307693 (History of present illness section)
- 3019666 (History of present illness Narrative)
- 42870367 (CMS - history of present illness panel)
Among these, what would be the most correct observation_concept_id for PI?
Please give me any idea about this issue.
thanks.