Jump to content

[SOLVED] Creating A Leader Board


sintax63

Recommended Posts

I have a little web site which I want to create a leader board for.

I have two tables: "users" and "lists"

 

users

id (auto increment)

date

login

password

first

last

email

 

lists

id (auto increment)

date

country

beer

rating

user

 

the "user" field in the 'lists' table matches up to the "id" field in the 'users' table.

 

What I am trying to do is calculate how many entries each user has in the 'lists' table and show the top 10 users (by their login). I am sure something like this is possible but having some trouble getting it started.

 

Any help or suggestions?

 

Thanks in advance!

Link to comment
Share on other sites

$top10 = mysql_result(mysql_query("
SELECT u.id, first, last, email COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
ORDER BY posts LIMIT 10
"),0);

echo $top10;

 

That isn't working... getting a:

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

 

I'm also not sure where the 'AS posts' is coming from as I don't have that in my tables.

Link to comment
Share on other sites

"AS posts" simply is aliasing the result of the count with the name "posts." This will cause the result count column to be called "posts." I think the error may be coming from the fact that I'm trying to order by an aggregate column, which MySQL doesn't like. Try this instead. You should have the following columns returned: 'id', 'first', 'last', 'email', 'posts'

SELECT id, first, last, email, posts
FROM
  (SELECT u.id, first, last, emal COUNT(l.id) AS posts
   FROM users u, lists l
   WHERE u.id = l.user)
ORDER BY posts DESC LIMIT 10

 

Also, you ought to clean up your error checking a tad, too. Assuming you have the above query in a $sql variable, change your code to this:

<?php
$res = mysql_query($sql);
if ($res === FALSE)
{
  die(mysql_error());
}

while ($row = mysql_fetch_assoc($sql))
{
  echo "{$row['first']} {$row['last']} => {$row['posts']} posts<br />\n";
}
?>

Link to comment
Share on other sites

obsidian - thanks for helping me out!

 

What I am running now returns the following:

Query was empty

 

<?php

include("connect.php");

$query="SELECT id, first, last, email, posts 
FROM 
   (SELECT u.id, first, last, emal COUNT(l.id) AS posts 
    FROM users u, lists l 
    WHERE u.id = l.user) 
ORDER BY posts DESC LIMIT 10";

$res = mysql_query($sql);

if ($res === FALSE)
{
  die(mysql_error());
}

while ($row = mysql_fetch_assoc($sql))
{
  echo "{$row['first']} {$row['last']} => {$row['posts']} posts<br />\n";
}

mysql_close();

?>

Link to comment
Share on other sites

You're assigning your query string to a variable named $query. Then, you are calling mysql_query() on a $sql variable that does not exist. That was what I meant by my comment above:

Assuming you have the above query in a $sql variable, change your code to this:

 

You either need to change your mysql_query() call to reference your $query variable, or else you need to change the name of your $query variable to $sql.

Link to comment
Share on other sites

duh - I don't know what I was thinking.  :D

 

That did the trick as far as getting the string recognized. Now have this error:

 

You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'COUNT(l.id) AS posts FROM users u, lists l WHERE u.id = l.user) ORDER' at line 3

 

Link to comment
Share on other sites

Wow, I'm having trouble with my keyboard today... here is the corrected SQL:

 

Try this first...

SELECT u.id, first, last, email, COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
ORDER BY posts LIMIT 10

 

If that doesn't work, try this...

SELECT id, first, last, email, posts
FROM
  (SELECT u.id, first, last, email, COUNT(l.id) AS posts
   FROM users u, lists l
   WHERE u.id = l.user)
ORDER BY posts DESC LIMIT 10

Link to comment
Share on other sites

I put each error under the appropriate chunk of code...

 

SELECT u.id, first, last, email, COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
ORDER BY posts LIMIT 10

 

Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause

 

SELECT id, first, last, email, posts
FROM
  (SELECT u.id, first, last, email, COUNT(l.id) AS posts
   FROM users u, lists l
   WHERE u.id = l.user)
ORDER BY posts DESC LIMIT 10

 

Every derived table must have its own alias

 

Link to comment
Share on other sites

I put each error under the appropriate chunk of code...

 

SELECT u.id, first, last, email, COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
ORDER BY posts LIMIT 10

 

Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause

 

I am so out of it. Seriously, I apologize for how clunky this has been:

SELECT u.id, first, last, email, COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
GROUP BY u.id, first, last, email
ORDER BY posts LIMIT 10

Link to comment
Share on other sites

Getting a standard "line 17" error now... could be something with my implementation of your code though.  :-\

 

<?php

include("connect.php");

$top10="SELECT u.id, first, last, email, COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
GROUP BY u.id, first, last, email
ORDER BY posts LIMIT 10";

$res = mysql_query($top10);
if ($res === FALSE)
{
  die(mysql_error());
}

while ($row = mysql_fetch_assoc($sql))
{
  echo "{$row['first']} {$row['last']} => {$row['posts']} posts<br />\n";
}

mysql_close();

?>

 

Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in index.php on line 17

 

Link to comment
Share on other sites

Scratch that - there was an error in my code.  :-[

 

Seem to work great and I just have to reverse the order and pick away at the info I want displayed.

Thank you so much!

 

For the archive - the working code:

 

<?php

include("../modules/connect.php");

$top10="SELECT u.id, first, last, email, COUNT(l.id) AS posts
FROM users u, lists l
WHERE u.id = l.user
GROUP BY u.id, first, last, email
ORDER BY posts LIMIT 10";

$res = mysql_query($top10);
if ($res === FALSE)
{
  die(mysql_error());
}

while ($row = mysql_fetch_assoc($res))
{
  echo "{$row['first']} {$row['last']} => {$row['posts']} posts<br />\n";
}

mysql_close();

?>

 

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.