T
Tara Metzger
Hello, Below is another SQL statement for a "bad" query that isn't seeing the changes in the tables even when the query is re-run (using the "run" button in the Design tab). No changes have been made to the design of the query and the only changes to the source table where manually entered new data to the existing design. How can I get the query to see the additional data with out having to delete a table in the query then add it back in? Any help you can give me would be wonderful. Thank you.
SELECT tblYdstckSegSpecRelevance.SegSpecRelID AS ID, tblYardstick.ClassID AS class, tblClasses.ClassTitle AS Title, tblYdstckSegSpecRelevance.TargetAudienceID AS SegNo, tblTargetAudience.TargetAudience AS Segment, tblLocation.LocationName AS [Local], tblYdstckSegSpecRelevance.YNLNA AS [Value], tblYardstickYesNo.YNL AS YN
FROM (tblYardstickYesNo INNER JOIN ((tblYdstckSegSpecRelevance INNER JOIN tblClasses ON tblYdstckSegSpecRelevance.ClassID = tblClasses.ClassID) INNER JOIN tblTargetAudience ON tblYdstckSegSpecRelevance.TargetAudienceID = tblTargetAudience.TargetAudienceID) ON tblYardstickYesNo.ID = tblYdstckSegSpecRelevance.YNLNA) INNER JOIN (tblLocation INNER JOIN tblYardstick ON tblLocation.LocationID = tblYardstick.LocationID.Value) ON (tblYdstckSegSpecRelevance.SegSpecRelID = tblYardstick.SegSpecRelevance.Value) AND (tblClasses.ClassID = tblYardstick.ClassID);
EggHeadCafe - Software Developer Portal of Choice
The FAST TRACK to ASP.NET
http://www.eggheadcafe.com/tutorial...48-dbfb16fcdda1/the-fast-track-to-aspnet.aspx
SELECT tblYdstckSegSpecRelevance.SegSpecRelID AS ID, tblYardstick.ClassID AS class, tblClasses.ClassTitle AS Title, tblYdstckSegSpecRelevance.TargetAudienceID AS SegNo, tblTargetAudience.TargetAudience AS Segment, tblLocation.LocationName AS [Local], tblYdstckSegSpecRelevance.YNLNA AS [Value], tblYardstickYesNo.YNL AS YN
FROM (tblYardstickYesNo INNER JOIN ((tblYdstckSegSpecRelevance INNER JOIN tblClasses ON tblYdstckSegSpecRelevance.ClassID = tblClasses.ClassID) INNER JOIN tblTargetAudience ON tblYdstckSegSpecRelevance.TargetAudienceID = tblTargetAudience.TargetAudienceID) ON tblYardstickYesNo.ID = tblYdstckSegSpecRelevance.YNLNA) INNER JOIN (tblLocation INNER JOIN tblYardstick ON tblLocation.LocationID = tblYardstick.LocationID.Value) ON (tblYdstckSegSpecRelevance.SegSpecRelID = tblYardstick.SegSpecRelevance.Value) AND (tblClasses.ClassID = tblYardstick.ClassID);
EggHeadCafe - Software Developer Portal of Choice
The FAST TRACK to ASP.NET
http://www.eggheadcafe.com/tutorial...48-dbfb16fcdda1/the-fast-track-to-aspnet.aspx