I want to create two Tables. Product, Members, and Category. I want the structure of the tables to be like:
Category: Two Fields: (Category_ID) (Category_Name) and I would like Category_ID to be the Primary Key
Product: Three Fields (Product_ID) (Product_Name) (Product_Price),(Category_ID) and I would like Product_ID to be the Primary Key, and Category_ID to be the Foreign Key.
I have been working at this for hours and I keep getting a constraint error. If someone would be willing to show me the SQL statements they would use in my situation, that would be great.