PIVOT Help - SELECT SQL [closed]

1

I have a table with the data:

unidade  tipo  valor  
      1     2  10,00  
      1     3  15,00  
      2     2  16,00  
      3     3  10,00  
      3     1  25,00

I need to make a select pivot that swallows me

unidade tipo1 tipo2 tipo3
1        0,00 10,00 15,00
2        0,00 16,00  0,00  
3       25,00  0,00  0.00

How do I do this?

    
asked by anonymous 16.09.2016 / 16:58

0 answers