Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations MikeeOK on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

playing with dates

Status
Not open for further replies.
Aug 24, 2005
56
US
Is there a way to only show the last date for each item sold in a table instead of all the dates?
 
Write a query as

Select Item, Max(Date) From <<Table Name>> Group By Item ORDER BY Item

Hope this helps you...
Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top