A family of Microsoft relational database management systems designed for ease of use.
, only the donor name is recorded in donations (a foreign key from the DONORS table in the Donations table).
First names are not good for a key field as you can have duplicate names. Your tablers should look like this:
tblDonors
DonorID PK Autonumber
DonorFirstname
DonorLastname
other into about donors
tblCampaignsandEvents
CampEventID (PK Autonumber)
CampEventTypeID (FK) (EitherEvent or Campaign etc)
CampEventTitle
other info (You might need separate tables for info unique to campaigns or events.)
tblDonations
DonationID (PK Autonumber)
DonorID (FK)
CampEventID (FK)
DonateDate
Donation
other info
to get a listing of donors for a specific campaign or event, you join all three tables And list donor info for a specific CampEventID