I have a table with three vars.
Customer_Order, Item_ID, Seller
I need to make a query that pulls only the customer_orders where seller has multiple entries per customer_orders.
Something like this....
Customer_Order Item_ID Seller
10001 xyz 121212
10001 fgh 121212
10001 jed 343434
10002 fgg 121212
10002 xyz 121212
10003 jed 343434
10003 hje 343434
The query would return:
Customer_Order Item_ID Seller
10001 xyz 121212
10001 fgh 121212
10001 jed 343434
Because thats the only place where there are multiple sellers for a specific customer_order. I need it to return all 3 fields though.
Thanks,
Tort
Customer_Order, Item_ID, Seller
I need to make a query that pulls only the customer_orders where seller has multiple entries per customer_orders.
Something like this....
Customer_Order Item_ID Seller
10001 xyz 121212
10001 fgh 121212
10001 jed 343434
10002 fgg 121212
10002 xyz 121212
10003 jed 343434
10003 hje 343434
The query would return:
Customer_Order Item_ID Seller
10001 xyz 121212
10001 fgh 121212
10001 jed 343434
Because thats the only place where there are multiple sellers for a specific customer_order. I need it to return all 3 fields though.
Thanks,
Tort