S
Steve
I have a table called Orders. It contains Fields called
CustId, OrderNumber, OrderDate, ShipDate amongst many
other fields.
I need to find Only the records that contain Duplicate
Values in the OrderDate Field for each CustId.
i.e. If CustID #001 has two records with an Order Date of
12/01/03 then both records are to be displayed. If a
CustID does not have a matching record with the same
Order Date then No records are to be displayed.
So my query result should look something like:
CUSTID ORDERID ORDERDATE
0001 12345 12/01/02
0001 12399 12/01/02
0007 12447 01/02/03
0007 21554 01/02/03
0007 35878 01/02/03
Any help would be appreciated. Thank you.
..
CustId, OrderNumber, OrderDate, ShipDate amongst many
other fields.
I need to find Only the records that contain Duplicate
Values in the OrderDate Field for each CustId.
i.e. If CustID #001 has two records with an Order Date of
12/01/03 then both records are to be displayed. If a
CustID does not have a matching record with the same
Order Date then No records are to be displayed.
So my query result should look something like:
CUSTID ORDERID ORDERDATE
0001 12345 12/01/02
0001 12399 12/01/02
0007 12447 01/02/03
0007 21554 01/02/03
0007 35878 01/02/03
Any help would be appreciated. Thank you.
..