Jump to content

[SOLVED] Mysql MIN


Nandini

Recommended Posts

Hi

I have a mysql database table astaccount. In that there is a field named as accountcode.

In database field accountcode values are 9001,9003,9000,58469.

In those values i want minimum value. For this i am using MIN function. But it is showing 58469 is minimum and 9003 is maximum . But i want 58469 as maximum and 9000 is minimum. here is my code.

<?

$least=mysql_query("select MIN(accountcode) as num from astaccount");

$row=mysql_fetch_array($least);

$lnumber=$row['num'];

echo $lnumber;

?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.