Ver Mensaje Individual
  #2 (permalink)  
Antiguo 06/10/2010, 08:26
Avatar de flaviovich
flaviovich
 
Fecha de Ingreso: agosto-2005
Ubicación: Lima, Peru
Mensajes: 2.951
Antigüedad: 19 años, 4 meses
Puntos: 39
Respuesta: Duda con Query

Si tienes SQL 2005, intenta con la funcion PIVOT.
Código SQL:
Ver original
  1. SELECT [PRIMARY], [Field_A], [Field_B], [Field_C]
  2. FROM (
  3.     SELECT [PRIMARY], Name, [VALUE]
  4.     FROM tu_tabla
  5. ) AS SourceTable
  6. PIVOT (
  7.     SUM([VALUE])
  8.     FOR Name IN ([Field_A], [Field_B], [Field_C])
  9. ) AS PivotTable
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.