Ver Mensaje Individual
  #1 (permalink)  
Antiguo 31/05/2012, 11:53
cesar_viridi
 
Fecha de Ingreso: enero-2012
Ubicación: Mexico Df
Mensajes: 95
Antigüedad: 12 años, 10 meses
Puntos: 6
Vista Reporte para acomodar columnas

Hola Amigos

Tengo una duda para poder hacer una consulta en forma de reporte tengo la siguiente tabla
Código SQL:
Ver original
  1. Gastos             
  2. id_gasto    piso        criterio        gasto       anio
  3. 1               1       Agua            500         2012
  4. 2               1       Luz             100         2012
  5. 3               1       Gas             700         2012
  6. 4               2       Internet        800         2012
  7. 5               2       Gas             515         2012
  8. 6               1       Internet        900         2012
  9. 7               2       TV              1200        2012
  10. 8               1       TV              1500        2012
  11. 9               2       Agua            17800       2012
  12. 10              3       Telefono        2200        2012
  13. 11              1       Telefono        3000        2012
  14. 12              1       Internet        1257        2012
  15. 14              2       Luz             2500        2012
  16. 15              2       Gas             6000        2012
  17. 16              3       Agua            8000        2012

Quiero tener el siguiente resultado

Código MySQL:
Ver original
  1. Vista              
  2.                
  3. Criterio        Piso 1      Piso 2      Piso 3      Anio
  4. Agua            500         17800            8000   2012
  5. Luz             100          2500               0   2012
  6. Gas             700          6000               0   2012
  7. Telefono        3000            0            2200   2012
  8. TV              1500         1200               0   2012
  9. Internet        1257          800               0   2012

Se podria?