The 2 main tables that I am working with are ChangeOrder and FieldOrder. I want to make a table (Orders) that has both.
They are set up like this:
ChangeOrder:
ChangeOrderNumber (ID)
ProjectCode (Can be multiple)
ActualAmount ($)
IssueDate
FieldOrder:
FieldOrderNumber (ID, but somehow there are repeats. Ex: One project can have FOCodes 1-6)
ProjectCode
ApprovedAmount
DateAssigned
I want to have a table that has
Orders (FieldOrders and ChangeOrders)
ProjectCode
Amount
Dates
I literally just want to put one underneath another, combining the respective fields, how can I do this?
Thanks!