i have two tables in my database :
- Users : contain user information
- UserTypes : contain the names of user types ( student , teacher , specialist ) – I can’t rename it to ‘Types’ as we have a table with this name
relation between Users and UserTypes many to many .. so i’ll create a table that have UserID(FK) with UserTypeID(FK) but I try to find best name for that table … any suggestion please ?
I would recommend following whatever naming conventions that your coding guidelines – you do have on right? – state for these types of tables. If you don’t have a guideline, then something like this might work:
Users_UserTypes