Can someone give me hand?
I'm trying to create a DB that will provide leaseholder info on transactions. The problem is there may be more than one lease holder associated with an account. (At most there are two lease holders tied to an account)I need to be able to search on field LastName in tenant master in order to determine the lease number associated with the tenant making the payment. There can only be one lease # associated with the tenants but there may be more than one tenant tied to the lease.
I have created table with LastName, FirstName & TenantLease# with no primary key which allows me to search for the Lease associated with the name; but I must then feed the lease # into a tenant master that is driven by lease #.
My problem is how do I feed the unique lease # into the Master table when it is not unique in the source table without creating duplicate records and bombing the app?
I'm trying to create a DB that will provide leaseholder info on transactions. The problem is there may be more than one lease holder associated with an account. (At most there are two lease holders tied to an account)I need to be able to search on field LastName in tenant master in order to determine the lease number associated with the tenant making the payment. There can only be one lease # associated with the tenants but there may be more than one tenant tied to the lease.
I have created table with LastName, FirstName & TenantLease# with no primary key which allows me to search for the Lease associated with the name; but I must then feed the lease # into a tenant master that is driven by lease #.
My problem is how do I feed the unique lease # into the Master table when it is not unique in the source table without creating duplicate records and bombing the app?