K
Keith Meier, MCSA
I'm creating a database showing who is required to review an invoice. I've
created the following tables:
Vendor
- Vendor_Name, text
- Vendor ID, number (primary key)
Approver
- Last_Name, text
- Approver_ID, number (PK)
- Approval_amount, number
Invoice:
- VendorID, number (from Vendor table)
- Invoice_Amount, number
** - Approver, number (pulled from approver table)
- other invoice information, various data types
I'll need up to 3 approver fields depending on the invoice amount. Do I need
3 of the ** fields or is there a way I can only have one and use a query or
some other tool to show which approvers needed for an invoice?
created the following tables:
Vendor
- Vendor_Name, text
- Vendor ID, number (primary key)
Approver
- Last_Name, text
- Approver_ID, number (PK)
- Approval_amount, number
Invoice:
- VendorID, number (from Vendor table)
- Invoice_Amount, number
** - Approver, number (pulled from approver table)
- other invoice information, various data types
I'll need up to 3 approver fields depending on the invoice amount. Do I need
3 of the ** fields or is there a way I can only have one and use a query or
some other tool to show which approvers needed for an invoice?