Patient gender, birthdate, name, where is it stored?

May I know what specific database tables and columns the patient’s gender, birthdate, and name are stored?

Is it stored in the person table? If it is then how is it connected to the patient?

It’s all there: https://openmrs.gitbooks.io/developer-manual/content/en/Technology/dataModel.html

Check the Person class, they should be there.

To be exact, gender and birthdate are in the person table while the names are in the person_name table, the person_name table has a FK to the person table

1 Like

Patient IS-A person, its PK is the same as person: