Jump to content

Recommended Posts

I'm trying to test to see if the output from a mysql table is a certain number or not and if it is, then display the results but I seem to be having the hardest time getting this to work even though it seems really simple.

 

If I have

$query_it = mysql_query("SELECT  * FROM swusers
LEFT JOIN `swcustomfieldvalues` ON swusers.userid = swcustomfieldvalues.typeid
LEFT JOIN swcustomfields as fields ON swcustomfieldvalues.customfieldid = fields.customfieldid
LEFT JOIN swcustomfieldgroups AS groups ON fields.customfieldgroupid = groups.customfieldgroupid
WHERE fields.customfieldgroupid = '19' LIMIT 50") or die(mysql_error());

The reason that the customfieldgroupid is = 19 is because I want to bring back all custom fields on a user in the group which has an id of 19

 

 

How can I bring back all users who have a record in customfields where the customfieldid = 51

 

I've been muttering the above statement to myself for more hours than I care to admit, so if it doesn't make sense let me know and I can try to explain it a little better

Link to comment
https://forums.phpfreaks.com/topic/178529-mysql-data-into-php-variable/
Share on other sites

Like this?

 

SELECT  * FROM swusers
LEFT JOIN (SELECT * FROM `swcustomfieldvalues` WHERE customfieldid = 51) AS `swcustomfieldvalues` ON swusers.userid = swcustomfieldvalues.typeid
LEFT JOIN (SELECT * FROM swcustomfields WHERE customfieldgroupid = '19') as fields ON swcustomfieldvalues.customfieldid = fields.customfieldid
LEFT JOIN swcustomfieldgroups AS groups ON fields.customfieldgroupid = groups.customfieldgroupid
LIMIT 50

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.