Jump to content

i want the max


yolop

Recommended Posts

$select_winner = mysql_query("SELECT  max(vote), userid,text FROM poll order by vote  ");

$read_winner = mysql_fetch_array($select_winner);

$text = $read_winner['text'];

echo $text;

 

but error

 

Warning: mysql_fetch_array(): supplied argument is not a valid MySQL result resource in

 

why??

Link to comment
Share on other sites

But what you want to get?

'text' is mysql reserved word. You should enclose it in `` in your queries

Change

$select_winner = mysql_query("SELECT  max(vote), userid,text FROM poll order by vote  ");

to

$select_winner = mysql_query("SELECT  max(vote), userid,`text` FROM poll order by vote  ") or die(mysql_error());

 

this will show any other mysql error messages.

Link to comment
Share on other sites

Using MAX() in a query requires the GROUP BY clause.

http://dev.mysql.com/doc/refman/5.0/en/group-by-functions.html

 

So you could group by .. userid maybe?  Don't know what result set you're aiming for.

$select_winner = mysql_query("SELECT MAX(vote), userid, `text` FROM poll GROUP BY userid ORDER BY vote");

 

Also, like Mchl said, text is a reserved word, so I would rename the column.

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.