Hi, I used this to pull out a count of number of times an item is in a table along with the items name. Now they want the date of the most recent entry, but it alludes me how to incorprate that into my existing statement. If nothing else, I could use output from this to requery for just the date, but that seems awfully wasteful.
Select Count(*) as Icnt,Item From Log Group By Item Order By Item
Any other thoughts?
Thanks,
Patrick