I have a database that contains info on tenants in a building. My current relationship leads as follows: Tenant ID is a foreign key in a table with a Lease ID, which in turn is a foreign key in a table with a Suite number. Suite numbers generally do not change, but can. When a tenant moves/leaves the building, I want to be able to delete the Tenant ID and Lease ID, without deleting the info on the suite number, as the suite number is used as a foreign key in about 7 other tables. Any way I can do this? I can post pictures of my relationships if need be. Thanks.