I have a Database with different types of users. The users are going to be assigned to a location based on the user type. For example a sector user will have a SectorId and a community user will have a CommunityId. Now this means a Sector user will have Null as his/her CommunityId. Whats the best way to resolve this?
I have tried creating different tables for different types of users to get rid of these null columns but I feel it is not the best approach.