Does anyone know of a fast SQL Query that finds the earliest date in the database and returns just that variable? I would really appreciate any help on this. Thanks!
SELECT MIN(datefield) AS earliestdate FROM myTable
-- Rich