jd2007 Posted August 15, 2007 Share Posted August 15, 2007 SELECT colx FROM tablec ORDER BY coly DESC LIMIT 1 Link to comment https://forums.phpfreaks.com/topic/65046-how-do-i-modify-the-code-below-to-give-me-colx-where-coly-is-the-least-value/ Share on other sites More sharing options...
php_tom Posted August 15, 2007 Share Posted August 15, 2007 SELECT colx, MIN(coly) FROM tablec LIMIT 1 Maybe that helps? Link to comment https://forums.phpfreaks.com/topic/65046-how-do-i-modify-the-code-below-to-give-me-colx-where-coly-is-the-least-value/#findComment-324598 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.