I am going to write some custom code to reduce the length of the columns returned. It is just that I wanted to know if it is possible to do it when I get the data itself.
For example the query returns: SELECT * FROM sillytable
This_part_always_remains_same_for_all_columns_Date | This_part_always_remains_same_for_all_columns_Value |
---|---|
18/01/2021 | 34 |
17/01/2021 | 45 |
Is there something I can do in the query that it returns
Manf_Date | Manf_Value |
---|---|
18/01/2021 | 34 |
17/01/2021 | 45 |
Essentially I want to replace the This_part_always_remains_same_for_all_columns with Manf in the results returned.