Viewing post 1 (of 1 total)
SELECT TOP 2 ejoindate
FROM etest
GROUP BY ejoindate
ORDER BY ejoindate DESC
(Above query will display the two dates as two rows)
SELECT MAX(ejoindate) AS m1,
(SELECT MAX(ejoindate)
WHERE ejoindate <
(SELECT ...
October 11, 2004 at 4:12 am
#526112