EchoFool Posted February 3, 2008 Share Posted February 3, 2008 Hey guys, How do you in mysql find a the "highest value" in a field ? Im trying to find who has the highest number out of all the numbers in the rows in the field "ticket number". Is there a set function to do that? Link to comment https://forums.phpfreaks.com/topic/89211-solved-find-highest/ Share on other sites More sharing options...
pocobueno1388 Posted February 3, 2008 Share Posted February 3, 2008 SELECT MAX(ticket_number) as num FROM table Link to comment https://forums.phpfreaks.com/topic/89211-solved-find-highest/#findComment-456811 Share on other sites More sharing options...
EchoFool Posted February 3, 2008 Author Share Posted February 3, 2008 Thankyou Again! Link to comment https://forums.phpfreaks.com/topic/89211-solved-find-highest/#findComment-456813 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.