How do I write an SQL query that transforms phone numbers from columns into a single column. Assume there are multiple personIDs and each personID has up to 3 phone types, Primary, Secondary and Tertiary. Currently, for each person, they are listed in three separate columns.
The desired outcome is that the phone numbers are all in one column, and another column has the phone types
Current Data
Person_ID | Primary_Phone | Secondary_Phone | Tertiary_Phone |
---|---|---|---|
1 | 2221111111 | 5551111111 | 9991111111 |
2 | 2221111112 | 5551111112 | 9991111112 |
3 | 2221111113 | 5551111113 | 9991111113 |
4 | 2221111114 | 5551111114 | 9991111114 |
Desired Data
Person_ID | Phone_Number | Phone_Type |
---|---|---|
1 | 2221111111 | Primary |
1 | 5551111111 | Secondary |
1 | 9991111111 | Tertiary |
2 | 2221111112 | Primary |
2 | 5551111112 | Secondary |
2 | 9991111112 | Tertiary |
3 | 2221111113 | Primary |
3 | 5551111113 | Secondary |
3 | 9991111113 | Tertiary |
4 | 2221111114 | Primary |
4 | 5551111114 | Secondary |
4 | 9991111114 | Tertiary |