I have three table in my database. Customers, which contains detaills of each client, such as name, phone number ... Products, containing detaills of each product.
each time a client requests a product, a new line is inserted in the third table Orders. the table Orders contains the customer id (foreign key), the product id (foreign key) and the quantity desired.
what I'm looking to do is to creat a report based on the Orders table, that shows me for each Client all the Orders that he has made.
I'm working on ms access 2007.
please help me !!!