Ver Mensaje Individual
  #26 (permalink)  
Antiguo 13/05/2009, 11:18
Avatar de GeoAvila
GeoAvila
Colaborador
 
Fecha de Ingreso: diciembre-2003
Ubicación: Antigua Guatemala
Mensajes: 4.032
Antigüedad: 21 años, 1 mes
Puntos: 53
Respuesta: Separar y sumar datos de una misma columna

Cita:
Iniciado por Dradi7 Ver Mensaje
Otra Forma de como Hacerlo
Código sql:
Ver original
  1. SELECT Factura,Movil,ISNULL([BAM],0) AS BAM,ISNULL([MMS],0) AS MMS,ISNULL([RPV],0) AS RPV,
  2.        ISNULL([SME],0) AS SME,ISNULL([SMR],0) AS SMR,ISNULL([TEL],0) AS TEL,
  3.        ISNULL([TLL],0) AS TLL,
  4.        ([BAM] + [MMS] + [RPV] + [SME] + [SMR] + [TEL] + [TLL]) AS TOTAL
  5. FROM
  6. (
  7.     SELECT Factura,Movil,Servicio FROM Trafico
  8. ) V PIVOT (SUM(VALOR + AGREGADO) FOR SERVICIO IN([BAM],[MMS],[RPV],[SME],[SMR],[TEL],[TLL])) AS PT
  9. ORDER BY FACTURA,MOVIL
esto solo funciona para sql 2005 y posterior aclarondo por si alguien prueba con una versión anterior no funcionará.

nos vemos.
__________________
* Antes de preguntar lee las FAQ, y por favor no hagas preguntas en las FAQ
Sitio http://www.geoavila.com twitter: @GeoAvila