Here is the scanario:
Tables:
T_Physicians
fields: (pk)TaxID, PhysicianName
T_ServiceCodes
fields: (pk)Servicecode , ServiceName, Price
Mission:
Associate each TaxID to each ServiceCode, mind you, each Physician have their own Service codes that they bill.
Should I build a Query with a Criteria to find it in 1 Table or Build Separate lookup ServiceCodes table to reference each TaxID in T_Physicians table?
Help:
How do I accomplish this?
Tables:
T_Physicians
fields: (pk)TaxID, PhysicianName
T_ServiceCodes
fields: (pk)Servicecode , ServiceName, Price
Mission:
Associate each TaxID to each ServiceCode, mind you, each Physician have their own Service codes that they bill.
Should I build a Query with a Criteria to find it in 1 Table or Build Separate lookup ServiceCodes table to reference each TaxID in T_Physicians table?
Help:
How do I accomplish this?
Comment