Employees and EmployeeUNI tables using the id column as the join key.unique_id from the EmployeeUNI table and the name from the Employees table.null displayed in the unique_id field.unique_id and name columns.erDiagram
Employees {
int id PK
varchar name
}
EmployeeUNI {
int id PK
int unique_id
}
Employees ||--o{ EmployeeUNI : has