PAT_ADDRESS
Description:
This table contains each patient's permanent address (I EPT 50). The primary key for this table is the combination of PAT_ID and LINE. Each different PAT_ID value represents a different patient, and each LINE value represents a different line of that patient's address.

Primary Key
Column Name Ordinal Position
PAT_ID 1
LINE 2

Column Information
Name Type Discontinued?
1 PAT_ID VARCHAR No
The unique ID of the patient record for this row. This column is frequently used to link to the PATIENT table.
2 LINE INTEGER No
The line number for the information associated with this record. Multiple pieces of information can be associated with this record.
3 ADDRESS VARCHAR No
This column contains the patient's permanent address. Each PAT_ID value represents a different patient, and each LINE value represents a different line of that patient's address.