I keep struggling with table structure after reading and studying various books, articles, etc. Makes sense when I read it but when I go to apply its another story.
Example: I want to create a database to track travel expenses. So when an employee audits a business during the month I want to track the expenses for that audit, AND I want to have more than 1 audit allowed to be submitted on the same expense report for a given month. I can't get this set up right.
So, I have employees who audits businesses incurring travel expenses along the way. I create:
tbl_Employee (emp_id, emp_lname, emp_fname)
tbl_BusinessName (business_id, business_county, business_name)
tbl_Expense (expense_id, exp_gas, exp_lodging, exp_meals)
tbl_AuditType (audit_id, type)
I don't know how to set this up...
Can anyone take the time to walk me through this?
Example: I want to create a database to track travel expenses. So when an employee audits a business during the month I want to track the expenses for that audit, AND I want to have more than 1 audit allowed to be submitted on the same expense report for a given month. I can't get this set up right.
So, I have employees who audits businesses incurring travel expenses along the way. I create:
tbl_Employee (emp_id, emp_lname, emp_fname)
tbl_BusinessName (business_id, business_county, business_name)
tbl_Expense (expense_id, exp_gas, exp_lodging, exp_meals)
tbl_AuditType (audit_id, type)
I don't know how to set this up...
Can anyone take the time to walk me through this?