There are two location related columns in my table like below
| Service_No | A_LOC | Z_LOC |
|------------|-------|-------|
| 001 | A | B |
| 002 | A | C |
| 003 | Null | C |
| 004 | F | B |
How do I select the distinct values of columns A_LOC
and Z_LOC
combined into a single list? The result of this query would be:
A, B, C, F