I have an Table USER
(USER_ID, PASSWORD, NAME, ...) and an Table ACCESS_ROLES
for the Users, every user can have one ACCESS_ROLE
(ONE-TO-ONE).
Wich table has the Foreign Key?
I would put the USER_ID
into ACCESS_ROLES
table. Is there any best practice approach?