Haha ummm... It's hard to say =P But you could have like a table for inventory and a table for products... like, instead of saying (in the Inventory table) that you have 100 Green flutes, you could make it ItemNo. 1, Quantity 100, and then in the Products table, say that ItemNo. 1 is a Green flute. After this you could create an orders table, a customer table, etc..
Just remember- primary key is something which has to be unique. Whenever I need one, I just make the "ID" field (or I create an ID field) and make that the primary key. Foreign key is the primary key from another table.