Jump to content

What's wrong with this query? Select issue on a JOINed query


sw0o0sh

Recommended Posts

Everything was going great until I decided to be specific with the select.

Ignore my variable naming, it's how a specific forums I use queries the database.

I basically need to select everything from `rscd_players`, everything from `rscd_experience`, but only ONE thing as listed from `users`.

 

Doesn't Work:

SELECT rscd_players(*), rscd_experience(*), users.username AS 'test' 
FROM rscd_players 
JOIN users ON rscd_players.owner = users.id 
JOIN rscd_experience ON rscd_players.user = rscd_experience.user 
WHERE rscd_players.username = '" . $db->escape($user_search) . "' 
LIMIT 0 , 1

 

Works (but not specific to my needs)

 

SELECT * 
FROM rscd_players 
JOIN users ON rscd_players.owner = users.id 
JOIN rscd_experience ON rscd_players.user = rscd_experience.user 
WHERE rscd_players.username = '" . $db->escape($user_search) . "' 
LIMIT 0 , 1

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.