Announcement

Collapse
No announcement yet.

Finding the Zones in the Access Tables

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Finding the Zones in the Access Tables

    I presume that the Countries table must link to a Zones table. I have looked through all of them without find any likely suspects. Anyone else found them?

    I want to do a report of Zones/Countries so we can check that we have it correct. Dead easy if I can find the right table!

    Thanks.

    #2
    Are you looking in the correct access database?

    Site folder\Ship Control\SimpleShipping.mdb

    Comment


      #3
      Hi

      and thanks. Yup I need to link to Countries in ActinicCatalog.mdb, and then Zones and ZoneMembers in SimpleShipping.mdb. The key names are bit off (nCountryId and RegionId) but:

      SELECT Countries.sCountryName, Zones.ZoneName
      FROM Countries RIGHT JOIN (ZoneMembers LEFT JOIN Zones ON ZoneMembers.ZoneID = Zones.ZoneID) ON Countries.nCountryID = ZoneMembers.RegionID;

      does the trick. Many thanks.

      Comment

      Working...
      X