G
Guest
I would like to take the following Query and Concentate (I believe that is
the term) the last three fields into one value and group by the CanID field
and the order of Concentation should be by the LayerID. Anyway of doing this
in a query?
SELECT BOM.CanID, BOM.LayerID, BOM.LayerAmount, BOM.LayerUnits,
BOM.LayerMaterial
FROM (BOM LEFT JOIN Can ON BOM.CanID = Can.CanID) LEFT JOIN [Material Class
Properties] ON BOM.LayerMaterial = [Material Class Properties].ID
ORDER BY BOM.CanID, BOM.LayerID;
the term) the last three fields into one value and group by the CanID field
and the order of Concentation should be by the LayerID. Anyway of doing this
in a query?
SELECT BOM.CanID, BOM.LayerID, BOM.LayerAmount, BOM.LayerUnits,
BOM.LayerMaterial
FROM (BOM LEFT JOIN Can ON BOM.CanID = Can.CanID) LEFT JOIN [Material Class
Properties] ON BOM.LayerMaterial = [Material Class Properties].ID
ORDER BY BOM.CanID, BOM.LayerID;