Hi:
Is there a way to run a query that dedupicate the values in the table?
For example:
Table: Order
Columns: Company, Item, Date,
Company Item Date
A Apple 07/16/06
B Berry 07/17/06
C Cherry 07/18/06
A Apple 07/20/06
Notice that Company A is duplicate and I would like the query with the following return:
Company Item Date
A Apple 07/16/06
B Berry 07/17/06
C Cherry 07/18/06
I have try the Distinct statement but only Company column is returned in the query. (I need the first instance of company A with Item and Date listed.). Thanks.
Roninpl
Is there a way to run a query that dedupicate the values in the table?
For example:
Table: Order
Columns: Company, Item, Date,
Company Item Date
A Apple 07/16/06
B Berry 07/17/06
C Cherry 07/18/06
A Apple 07/20/06
Notice that Company A is duplicate and I would like the query with the following return:
Company Item Date
A Apple 07/16/06
B Berry 07/17/06
C Cherry 07/18/06
I have try the Distinct statement but only Company column is returned in the query. (I need the first instance of company A with Item and Date listed.). Thanks.
Roninpl