Microsoft
Software
Hardware
Network
Question : Query help
I have an Access table with 2 columns, TestID and TestDate. It holds a test number and the date of the test. A test number is repeated several times with each time the test was done. I need a query that gives me just the most recent test date of each test.
Thanks
Answer : Query help
SELECT TestID, Max(TestDate)
FROM SomeTable
GROUP BY TestID
Random Solutions
bypass login screen on intranet app LDAP authentication VB.Net
wav to mp3
Merge to SQL Server Data Files
(ajaxobject).readyState at zero?
How to connect to database using Vbscript?
Synchronize table structures accords schemas
Can't resize a spredsheet window.
What's wrong with this script?
Stock Ticker on Intranet page for corporation
How do I divide two integer values and get a result that includes 2 decimal places?