I am designing a database that has these tables, user_accounts and user_info.
Here's the structure.
*USER_ACCOUNTS*
user_id
user_password
user_type
*USER_INFO*
user_id
user_fullname
user_address
user_email
user_contact_no
Now, my question is, is that design is okay? Somebody told me to merge them into one table. But can't fine the reason why I should merge it.
Any suggestions?
By the way, I'm designing it for authentication of users and for user's personal information.
Thanks.