S
Sean
I have 10 query's and each one summarizes a different group of data, and each
query has 2 output fields. The output of one query would be Boxes 10,
another query's output would be Ladders 20. Each of these queries is pulling
from a different data source. Then I have a summary query that pulls in the
results of each one of these query's. However, if one of the query's has no
results to display, the entire summary query does not produce any results
even if their subquery's have data to present. Is there a better way to set
this up? The actual query is below. Thanks,
SELECT NegativeATP.NegATP, ShipComplete.Ship_Complete,
TotalLines.TotalLines, ShippableLines.Shippable,
DeliveryGroup_Shippable.DeliveryGroup, TJ_UnShippable_Percentage.Percent AS
TJ_Percentage, GHO_UnShippable_Percentage.Percent AS GHO_Percentage,
BB_UnShippable_Percentage.Percent AS BB_Percentage,
BP_UnShippable_Percentage.Percent AS BP_Percentage
FROM NegativeATP, ShipComplete, TotalLines, ShippableLines,
DeliveryGroup_Shippable, TJ_UnShippable_Percentage,
GHO_UnShippable_Percentage, BB_UnShippable_Percentage,
BP_UnShippable_Percentage;
query has 2 output fields. The output of one query would be Boxes 10,
another query's output would be Ladders 20. Each of these queries is pulling
from a different data source. Then I have a summary query that pulls in the
results of each one of these query's. However, if one of the query's has no
results to display, the entire summary query does not produce any results
even if their subquery's have data to present. Is there a better way to set
this up? The actual query is below. Thanks,
SELECT NegativeATP.NegATP, ShipComplete.Ship_Complete,
TotalLines.TotalLines, ShippableLines.Shippable,
DeliveryGroup_Shippable.DeliveryGroup, TJ_UnShippable_Percentage.Percent AS
TJ_Percentage, GHO_UnShippable_Percentage.Percent AS GHO_Percentage,
BB_UnShippable_Percentage.Percent AS BB_Percentage,
BP_UnShippable_Percentage.Percent AS BP_Percentage
FROM NegativeATP, ShipComplete, TotalLines, ShippableLines,
DeliveryGroup_Shippable, TJ_UnShippable_Percentage,
GHO_UnShippable_Percentage, BB_UnShippable_Percentage,
BP_UnShippable_Percentage;