Hey everyone I have two tables of data. One containing names and hire dates, the other containing pay periods. I would like to make a query which counts if the hire date is within the pay period (<= ending date) and sums the counts. However in attempting this, I get results which are far too high, naturally because these tables aren't joined together. Unfortunately there are no real columns which the two tables can be joined with. Is there any solution for this so I might be able to get a sum of the counts? Perhaps an alternative to count or something?
Table 1
Name1... Hire Date1
Name2...hire date2
Table 2
Date beg...date end
Date beg2..date end2
Etc