hwkyetkd11
Technical User
Okay here is my SQL
SELECT [A - Top Hng S Thickness 1 ---- QC].Date, [A - Top Hng S Thickness 1 ---- QC].Time, [A - Top Hng S Thickness 1 ---- QC].[Sample 1], [B - Btm Hng S Thickness 1 ---- QC].[Sample 1], [C - Top Width 1 ---- QC].[Sample 1], [D - Btm Width 1 ---- QC].[Sample 1], [E - Btm Hdl S Thickness 1 ---- QC].[Sample 1], [F - Top Hdl S Thickness 1 ---- QC].[Sample 1], [G - Height 1 ---- QC].[Sample 1]
FROM [A - Top Hng S Thickness 1 ---- QC], [B - Btm Hng S Thickness 1 ---- QC], [C - Top Width 1 ---- QC], [D - Btm Width 1 ---- QC], [E - Btm Hdl S Thickness 1 ---- QC], [F - Top Hdl S Thickness 1 ---- QC], [G - Height 1 ---- QC]
ORDER BY [A - Top Hng S Thickness 1 ---- QC].Date DESC , [A - Top Hng S Thickness 1 ---- QC].Time DESC;
I am trying to combine data from 7 different tables into one showing all the measurements at once for each object. The data is entered electronically using a foot pedal to send the data to the computer. Any help would be great!
SELECT [A - Top Hng S Thickness 1 ---- QC].Date, [A - Top Hng S Thickness 1 ---- QC].Time, [A - Top Hng S Thickness 1 ---- QC].[Sample 1], [B - Btm Hng S Thickness 1 ---- QC].[Sample 1], [C - Top Width 1 ---- QC].[Sample 1], [D - Btm Width 1 ---- QC].[Sample 1], [E - Btm Hdl S Thickness 1 ---- QC].[Sample 1], [F - Top Hdl S Thickness 1 ---- QC].[Sample 1], [G - Height 1 ---- QC].[Sample 1]
FROM [A - Top Hng S Thickness 1 ---- QC], [B - Btm Hng S Thickness 1 ---- QC], [C - Top Width 1 ---- QC], [D - Btm Width 1 ---- QC], [E - Btm Hdl S Thickness 1 ---- QC], [F - Top Hdl S Thickness 1 ---- QC], [G - Height 1 ---- QC]
ORDER BY [A - Top Hng S Thickness 1 ---- QC].Date DESC , [A - Top Hng S Thickness 1 ---- QC].Time DESC;
I am trying to combine data from 7 different tables into one showing all the measurements at once for each object. The data is entered electronically using a foot pedal to send the data to the computer. Any help would be great!