I just cannot get beyond this spot. I have an existing table which looks like:
LocalUnitTable
CountyCd
LocalUnitType
LocalUnitCd
OfficeID(PK)
I need to start now combine some existing information that is stored in 2 other tables into the mix. The two other tables with existing information look like:
PopulationTable
CountyCd*
LocalUnitType*
LocalUnitCd*
PopulationYear*
Population
TaxValueTable
CountyCd*
LocalUnitType*
LocalUnitCd*
TaxYear*
TaxValue
I do not know how to work with these existing tables to come up with a new one to combine it all.
LocalUnitTable
CountyCd
LocalUnitType
LocalUnitCd
OfficeID(PK)
I need to start now combine some existing information that is stored in 2 other tables into the mix. The two other tables with existing information look like:
PopulationTable
CountyCd*
LocalUnitType*
LocalUnitCd*
PopulationYear*
Population
TaxValueTable
CountyCd*
LocalUnitType*
LocalUnitCd*
TaxYear*
TaxValue
I do not know how to work with these existing tables to come up with a new one to combine it all.