jd2007 Posted August 15, 2007 Share Posted August 15, 2007 SELECT colx FROM tablec ORDER BY coly DESC LIMIT 1 Quote 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? Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.