Skip to main content

Bank Employee

Data Dictionary - Entity Table: Bank_Employee#

Within the Organizational structure, employee of the bank is modeled as a person. Together with the Organizational entity, employee helps to model the different responsibilities within the Organization. They show who is responsible for different client-specific relationship.

Primary Key ('id').ENGINE = InnoDB..
Column NameData TypePK Primary Key, NN-Not Null, NullExampleComment
idBIGINT(12)PK, NN1PrimaryKey-ID, Not Null (auto creates)
Job_FunctionVARCHAR(45)NULLPresidentJob Function/Title of the employee
RankBIGINT(12)NULL3Rank of the employee.
PersonBIGINT(12)NULL1Person ID
CONSTRAINTFOREIGN KEYREFERENCESON DELETEON UPDATE
BEPerson(Person)Person (id)NO ACTIONNO ACTION
CREATE INDEXONASCVISIBLE.
Person_idxBank_Employee(Person ASC)VISIBLE.