Donn Posted December 16, 2006 Share Posted December 16, 2006 Hi,I have the below query and it works, however I need the emp.Date to be MAX Date as I want the last time that the person logged in, the below code shows the first time they logged in.Could anyone please help, I have tried and got good advise already but stuck on this last hurdle.cheers<?$query = "SELECT emp.Date, emp.Passcode, emp2.Surname, emp.statusFROM emp INNER JOIN emp2 ON emp.Passcode = emp2.Passcode GROUP BY emp.Passcode ";$result = mysql_query($query);$newline = "<br />";while($row = mysql_fetch_array($result)){ echo "". $row['Passcode']." " .$row['Surname']. " " .$row['Date']." " .$row['status']; echo "<br />";}?> Quote Link to comment Share on other sites More sharing options...
fenway Posted December 16, 2006 Share Posted December 16, 2006 So why not:[code]SELECT MAX(emp.Date) AS maxDate, emp.Passcode, emp2.Surname, emp.statusFROM emp INNER JOIN emp2 ON emp.Passcode = emp2.Passcode GROUP BY emp.Passcode [/code] Quote Link to comment Share on other sites More sharing options...
Donn Posted December 16, 2006 Author Share Posted December 16, 2006 [quote author=fenway link=topic=118882.msg486218#msg486218 date=1166292403]So why not:[code]SELECT MAX(emp.Date) AS maxDate, emp.Passcode, emp2.Surname, emp.statusFROM emp INNER JOIN emp2 ON emp.Passcode = emp2.Passcode GROUP BY emp.Passcode [/code][/quote]Hi,This does not work,I used to get a result like1111 Hutchinson 2006-12-14 22:33:07 In2222 Corkish 2006-12-12 23:02:56 Out3159 Houldsworth 2006-12-14 07:47:18 Out3333 Kelly 2006-12-14 22:33:27 Out14789 Fox 2006-12-15 10:30:39 InNow I get1111 Hutchinson In2222 Corkish Out3159 Houldsworth Out3333 Kelly Out14789 Fox Init still shows the first record in the table not the last of each person also no time?|I am really stumped on this. Any help appreciated. Quote Link to comment Share on other sites More sharing options...
artacus Posted December 17, 2006 Share Posted December 17, 2006 Well your field name changed from Date to maxDate so if you didn't account for that, your dates wont show up. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.