Ver Mensaje Individual
  #3 (permalink)  
Antiguo 20/05/2010, 10:15
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: Consultas Correlativas

Código SQL:
Ver original
  1. CREATE PROCEDURE Usp_Clientes_Pedidos
  2. @xAño AS INT
  3. AS
  4. SELECT IdCliente,NombreCompañía,COUNT(*) AS Cantidad_Pedidos
  5. FROM Clientes C
  6. INNER JOIN Pedidos P ON C.IdCliente=P.IdCliente
  7. WHERE YEAR(P.FechaPedido) = @xAño
  8. GROUP BY IdCliente,NombreCompañía
  9. ORDER BY 2
  10. --Print getdate()
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.