I currently save the user "FirstName" and "LastName" in the USER table, but I also have the USER PROFILE table (which provides additional information about the user), and it would be wise for the user "FirstName" and "LastName" in the table USER PROFILE.
So what am I doing? make two copies of "FirstName" and "LastName"?
The USER table contains the user credentials that the user uses to enter the account control panel, i.e. username, password, registration date, security issues, etc.
The USER_PROFILE table contains information about the user, such as address, phone number, country of birth, country of citizenship, etc.
Relationship
USER 1. * USER_PROFILE
source
share