Hello, I am trying to find out what are the popular naming conventions for DB tables.
Therefor I have 2 questions:
Lets say you have a table with persons in it. Each row is a person. How would you call the table - 'PERSONS' or 'PERSON'?
Now lets say there is another table named 'PERMISSIONS' and you are creating a new table which is mapping between persons to permissions. How would you call this table, 'PERSON_TO_PERMISSION', 'PERSON_PERMISSION_MAP' or anything else?
I know there isn't a definite rule here but I am just curious on what is popular.