Survey (MySQL):
The
answer
table stores answers to survey questions.The
user_profile
table stores answers to user profile questions.The
user
table only stores primary key.
I need user
table to get relation between answer
and auser_profile
.
Is it correct to have user
table that only stores primary key for that relation?