Ok for the of simplicity I am going to use a dummy example:
Three tables :
Table 1 Items:
ItemID - PK
Item
Price
Table 2 Customers:
PersonID - PK
FirstName
LastName
Table 3 Orders:
OrderID - PK
PersonID - FK
ItemID - FK
My data is in a text file.
OrderID: 0001
Fname: Rob
Lname: Bebob
ItemID: 039
Price: 9.99
My question is, how do I get that into my tables? 1) Automatically 2) Manually. Just a little confused with the whole KEYS situation.