Closed Thread Icon

Topic awaiting preservation: Mysql query (Page 1 of 1) Pages that link to <a href="https://ozoneasylum.com/backlink?for=12083" title="Pages that link to Topic awaiting preservation: Mysql query (Page 1 of 1)" rel="nofollow" >Topic awaiting preservation: Mysql query <span class="small">(Page 1 of 1)</span>\

 
Osaires
Paranoid (IV) Inmate

From: oslo, Norway
Insane since: Aug 2001

posted posted 03-04-2002 13:23

i have two tables the first table is "user" and the other is "player"

the user have to select 11 players, for every field f1,f2,f3,f4-f11, this fields contains id from player's.
inn the player table the player contains points, cost and ID.

what i want to do is, print the user with the moust points.

how would i write the sql query?


lallous
Paranoid (IV) Inmate

From: Lebanon
Insane since: May 2001

posted posted 03-04-2002 14:06

just use the SELECT ........ FROM .... ORDER BY points [ASC

Osaires
Paranoid (IV) Inmate

From: oslo, Norway
Insane since: Aug 2001

posted posted 03-04-2002 14:57

i don't think that will work, cause i need one value from user and one value from player

player
--------------------
id

jiblet
Paranoid (IV) Inmate

From: Minneapolis, MN, USA
Insane since: May 2000

posted posted 03-04-2002 16:09

Okay, your database needs to be put into 3rd normal form. Read about Normalized Databases.

Now, this may not be easy to understand right away, so just ask questions and I'll clarify. Basically, in your database the way you currently have it, you have a relationship where one user can have many players and one player can be assigned to many users. This relationship is called a many-to-many relationship. In a normalized database, you only want one-to-many and one-to-one relationships. The way to solve this problem is create a two-column table comprised of the ids from the two existing tables. This is called a JUNCTION table and in this case it is necessary to give you access to the GROUPWISE functions (see below). Also, I don't know if your user table has a numeric AUTO_INCREMENT id, but i recommend it does. Here is my new recommneded table structure:

PLAYER
id

Osaires
Paranoid (IV) Inmate

From: oslo, Norway
Insane since: Aug 2001

posted posted 03-05-2002 01:34

Thanks jiblet,

this is just wat i'm looking for.
i just hoap i understand it

and thanks again.

jiblet
Paranoid (IV) Inmate

From: Minneapolis, MN, USA
Insane since: May 2000

posted posted 03-05-2002 16:45

I read about 5 articles on database normalization, and none of them really explained how to model many-to-many relationships. It wasn't until I actually got into the trenches that I realized how the junction table works, and how the methods I outlined above give you the ideal flexibility when working with many-to-many relationships.

If you don't understand this now, I'm sure you will by the time you get done working with it

(btw, just for future reference, 'hope' <- correct spelling)

-jiblet

Lurch
Paranoid (IV) Inmate

From: Behind the Wheel
Insane since: Jan 2002

posted posted 03-06-2002 16:57

I took a semester course at college on Relational Database design, and still, normalization was a more difficult thing to grasp... The actual "what a normalized db is" part isn't that hard... i found that converting a non-normalized db to 3nf was the most difficult to learn...

good luck

--Lurch--

Osaires
Paranoid (IV) Inmate

From: oslo, Norway
Insane since: Aug 2001

posted posted 03-07-2002 00:47

Hi again, i have learn much about sql lately, but i still can do what i want to do.

the problem is this,
i don't know how to get the points from the player table, more then once inn one row.

this is the result i get now from this query:
select U.user, U.f1, U.f2, P.ID, P.name, P.points from fUser as U, fPlayers as P where P.ID = U.f1 or P.ID = U.f2;

+---------+-----+-----+-----+-----------------+--------+

jiblet
Paranoid (IV) Inmate

From: Minneapolis, MN, USA
Insane since: May 2000

posted posted 03-07-2002 06:57

Well, that's a tough one indeed. There may be a way to accomplish that, but I am not aware of it. It would likely be some GROUPWISE function like ROWStoCOLUMNS() or LISTROWS().

If it was my application, I would simply let the user information repeat by dropping the GROUP BY clause. Then in my application, I would pull each player information with a loop like:

code:
$i = 0;
while ($row = mysql_fetch_row($result)) {
if($row['name'] != $lastName) {
$j = 0;
$i++;
$lastName = $row['name'];
}
$players[$i][$j] = $row['player'];
$j++;
}



That's just the basic idea, if you need more help piecing it together maybe someone else can help you or I should have some free time SOME TIME in the next week

-jiblet

[This message has been edited by jiblet (edited 03-07-2002).]

tr909
Obsessive-Compulsive (I) Inmate

From:
Insane since: Mar 2002

posted posted 03-15-2002 03:59

i think yo mean this (sql statements in uppercast)

SELECT u.name, SUM(p.points) as total
FROM users AS u,
players AS p
WHERE u.f1=p.id OR u.f2=p.id OR u.f3=p.id
GROUP BY u.name
ORDER BY total DESC

as you can see the WHERE statement can get exhausting, especially if you want more than 11 later on. It is better to use a middle table. A user to player link table as jiblit suggests. that way you could use a

SELECT ...
FROM users
LEFT JOIN linktable ON userid=playerlink
LEFT JOIN players ON playerlink=playerid

(or to that extend)

i tried your second question a bit with JOIN and IN(....) statements, but
that is IMPOSSIBLE without a link table because you can only really JOIN once on a table (not 11 times).

Gerhard <tr909>


[This message has been edited by tr909 (edited 03-15-2002).]

« BackwardsOnwards »

Show Forum Drop Down Menu