I am designing one to one relationship with EMPLOYEE and ACCOUNT table
this is account table
Account
<<pk>> account_id
account_number
and here is Employee table
Employee
<<pk>> employee_id
employee_name
designation
salary
hire_date
so here my question is should employee table contain fk for account_id or account table contain fk for employee_id?
and How to decide which side should contain fk?