I have two tables in my db: Customers and Subcontractors.
Now it appears that some customers can be also subcontractors.
What I decided to do is to create a base table (super type) that holds the common data and then complete the relevant info for each type (customer, subcontractor) in other table. It will be something like this:
NEW_TABLE<------Customers
<------Subcontractors
The problem is that I don't really know what to call this table. Is the name "Partner" the best option?