I am working with an outsource developed database,
They have given two columns -- As an example
Charge Value
Test 0.23
Jop 0.10
Bob 0.15
Well I want to query the table so that I get the following output from these two columns.
Charge Value Bob Value Total
Test 0.23 0.15 0.38
These are obviously linked together by a primary key. So I want to use the two columns to represent data in four columns. I was just wondering if this is possible, or do I have to perform multiple queries.
Hope that is enough information!