I have the following query:
SELECT despesa.codRequisicao,
despesa.histDespesa,
despesa.despesaPassagem, despesa.despesaTaxi, despesa.despesaHotel, despesa.despesaRefeicao, despesa.despesaOutros
FROM despesa;
Where the result displays this way:
1 hist1 0 200 0 0 0
1 hist2 0 0 600 0 0
I need the result to look like this:
1 hist1 despesaTaxi 200
1 hist2 despesaHotel 600
How do you do it?