Ver Mensaje Individual
  #2 (permalink)  
Antiguo 20/05/2010, 09:59
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. SELECT DISTINCT IdEmpleado,Apellidos+' '+Nombre AS Vendedor
  2. FROM Empleados E
  3. INNER JOIN Pedidos P ON E.IdEmpleado = P.IdEmpleado
  4. INNER JOIN [Detalles de Pedidos] D ON P.IdPedido = D.IdPedido
  5. INNER JOIN Productos PR ON D.IdProducto = PR.IdProducto
  6. WHERE PR.NombreProducto = 'Carne de Cordero'
  7. ORDER BY Vendedor
__________________
No repitamos temas, usemos el Motor de busquedas
Plantea bien tu problema: Ayúdanos a ayudarte.