Which statistical software or programming languages (e.g., R, SAS, SQL) are you most proficient in, and how have you applied them to healthcare research?
To demonstrate SQL proficiency, use the patients and encounters tables to identify patients with at least two emergency department encounters during 2024.
patient_id, patient_name, ed_encounter_count, and latest_ed_encounter| Column | Type | Description |
|---|---|---|
| patient_idPK | INT | Unique patient identifier |
| patient_name | VARCHAR(100) | Patient name |
| birth_date | DATE | Patient date of birth |
| sex | VARCHAR(20) | Recorded patient sex |
| Column | Type | Description |
|---|---|---|
| encounter_idPK | INT | Unique encounter identifier |
| patient_id | INT | Patient associated with the encounter |
| encounter_date | DATE | Date of the encounter |
| encounter_type | VARCHAR(30) | Clinical encounter type |