Jump to content

[SOLVED] Select query, with 2 tables


Philip

Recommended Posts

Okay, I admit I'm still pretty noob at MySQL... But here's what I got:

Table 'users':

id

username

link

clicks

hits

suspend

vacation

maxed

 

1

joe

abcd

1

0

0

0

0

2

bob

dbca

0

0

0

0

0

3

jim

linksomewhere

0

0

0

0

0

 

Table 'clicks':

to

from

dbca

1

 

Where, clicks.to is linked to users.link and clicks.from is linked to users.id.

 

What I am trying to do is something along the lines of Select stuff from tables users where user isn't suspended and user isn't on vacation and user has not clicked that link.

 

Example: Before joe clicks bob's link, I should be able to print a list and look like:

joe [abcd], bob [dbca], jim [linksomewhere]
Now, joe clicks bob's link and it inserts bob's link and joe's id into the table 'clicks' (as seen as the example entry in the tables above). Now, when I print the list for user joe, it shouldn't show bob's link anymore.
joe [abcd], jim [linksomewhere]

 

What I have kinda works, but it'll display some results twice. I've also aimlessly tried a left join. Here's what I've got (left joined):

SELECT users.username, users.link, users.clicks, users.hits, users.maxed, (users.clicks - users.hits) AS ch
FROM  `users` 
LEFT JOIN  `clicks` ON users.id != clicks.from
AND users.link != clicks.to
WHERE users.suspend =0
AND users.vacation =0
ORDER BY ch DESC

(normal join):

SELECT users.username, users.link, users.clicks, users.hits, users.maxed, (users.clicks - users.hits) AS ch
FROM  `users` ,  `clicks` 
WHERE users.suspend =0
AND users.vacation =0
AND users.id != clicks.from
AND users.link != clicks.to
ORDER BY ch DESC 

Link to comment
Share on other sites

Finally got it to work, had to use a sub query. If anybody has any improvements to the following code, I would really appreciate the feedback ;)

SELECT users.username, users.link, users.clicks, users.hits, users.maxed, (users.clicks - users.hits) AS ch
FROM `users`
WHERE 
NOT EXISTS (SELECT `from` FROM `clicks` WHERE clicks.to=users.link AND clicks.from=[CURRENT USER, get this value from PHP])
AND users.suspend =0
AND users.vacation =0
ORDER BY ch DESC

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.