1 2 3 4
| SELECT Réalisation.Atelier, Commande.N°Commande, Commande.NomClient, Lot.N°Lot, Lot.Quantité_Lot, Lot.[Objectif Demandé], Réalisation.Date, Réalisation.Poste, Réalisation.Machine, Réalisation.Opérateur, Réalisation.Production, Réalisation.Temps, [Production]/[Temps]/24 AS [Cadence/H], Réalisation.Soit, Réalisation.Objectif, Lot.Cumul_Prod, Lot.Cloturé, Lot.[Cumul_Prod Annexe], Lot.[Cloture Prod_Annexe]
FROM (Commande RIGHT JOIN Lot ON Commande.N°Commande = Lot.N°Commande) LEFT JOIN Réalisation ON Lot.N° = Réalisation.indexLot
WHERE (((Réalisation.Date) Between [Entrez la Date de Début] And [Entrez la Date de Fin]))
ORDER BY Réalisation.Atelier, Commande.N°Commande, Commande.NomClient, Lot.N°Lot; |
Partager