I have a table with ~100 columns, and only one row. Each column is a date, and each entry in a column is a corresponding value. I want to query the table so that it is displayed with only 2 columns: Date, Value.
|--------|--------|--------|--------|--------|--------|
| Date1 | Date2 | Date3 | Date4 | Date5 | Date6 |
|--------|--------|--------|--------|--------|--------|
| Value1 | Value2 | Value3 | Value4 | Value5 | Value6 |
|--------|--------|--------|--------|--------|--------|
What I want:
|--------|--------|
| Dates | Values |
|--------|--------|
| Date1 | Value1 |
|--------|--------|
| Date2 | Value2 |
|--------|--------|
| Date3 | Value3 |
|--------|--------|
| Date4 | Value4 |
|--------|--------|
| Date5 | Value5 |
|--------|--------|
| Date6 | Value6 |