Viewing 5 posts - 1 through 5 (of 5 total)
GilaMonster (10/6/2008)
select < column list > from users inner join
(SELECT User_ID, MAX(Start_Date) as LatestStartDate FROM Users group by User_ID) sub
on Users.User_ID = sub.User_ID...
October 6, 2008 at 12:43 pm
OK, well at the risk of sending this thread spiraling into 2k5 VB.net land and hoping theres a few here with knowledge in both.
First the Access level was just for...
October 6, 2008 at 11:56 am
ok I think I need to clarify a little bit.
Table Users has we will say 5 fields
User_ID, FirstName,LastName,StartDate,AccessLevel
Rows look something like this
User_ID | FirstName | LastName | StartDate ...
October 6, 2008 at 10:38 am
Nevermind.... I managed to figure it out.
August 19, 2008 at 11:07 am
andrew gothard (8/14/2008)
August 14, 2008 at 9:49 am
Viewing 5 posts - 1 through 5 (of 5 total)