Hello,
I need help on a join query. I have a customer table and an Order table (see below).
Customer:
custid (pk)
name
address
city
state
Order:
orderid (pk)
custid (fk)
prodname
qty
I would like to create a report on one customer (custid) and all Orders (orderid) associated with that one customer. How would I join this in a query to get what I need?
I need help on a join query. I have a customer table and an Order table (see below).
Customer:
custid (pk)
name
address
city
state
Order:
orderid (pk)
custid (fk)
prodname
qty
I would like to create a report on one customer (custid) and all Orders (orderid) associated with that one customer. How would I join this in a query to get what I need?