- , , , ! , (. ), : . : , , , "", "", "" "". , , .
Here are some of our examples where the field name is built from the nature of the data (date, time, code, identifier) + table description, de facto each unique column is unique:
Tbl_Attendance contains attendance data
id_Attendance is the identifier
id_Person is the foreign key to Tbl_person.id_Person
id_Zone is the foreign key to Tbl_Zone.id_Zone
dateAttendance is the attendance date
timeInAttendance is the check in time
timeOutAttendance is the check out time
Tbl_PaySlip contains informations about Payslips
id_Payslip is the identifier
id_Person is the foreign key to Tbl_person.id_Person
id_Company is the foreign key to Tbl_Company.id_Company
dateStartPayslip is the starting date of the payslip
dateEndPayslip is the ending date of the payslip
codePayslip is the unique code of the payslip, built out from company code, person code, period code
source
share