Ver Mensaje Individual
  #2 (permalink)  
Antiguo 03/12/2013, 10:56
Avatar de Libras
Libras
Colaborador
 
Fecha de Ingreso: agosto-2006
Ubicación: En la hermosa perla de occidente
Mensajes: 7.412
Antigüedad: 18 años, 4 meses
Puntos: 774
Respuesta: Query que devuelva la ultima fecha del año pasado

Código SQL:
Ver original
  1. SELECT Fecha, Proveedor, [Nivel 1], [Nivel 2], [Nivel 3], SUM(Monto)
  2. FROM ProveedorNiveles
  3. WHERE Proveedor = 'AC1890BD'
  4. AND [Nivel 1] = 'XX'
  5. AND [Nivel 2] = 'XXXX'
  6. AND Fecha = (SELECT MAX(fecha) FROM ProveedorNiveles WHERE datepart(yyyy,fecha)=datepart(yyyy,getdate())-1)
  7. GROUP BY Fecha, Proveedor, [Nivel 1], [Nivel 2], [Nivel 3]

saludos!
__________________
What does an execution plan say to t-sql query? Go f**k yourself, if you are not happy with me

Última edición por gnzsoloyo; 03/12/2013 a las 14:21