Jump to content

removing SQL results within the query.


gerkintrigg

Recommended Posts

is there a way in SQL to say "grab all the records that fit this description, then remove all these from it"?

 

I'm trying to work out how to get all members who have not uploaded a picture and all members who have and had it activated and set as primary in the "pictures" table.

 

I have no idea how to do it. I tried asking loads of people, but think i might be asking the wrong question.

 

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/36565-removing-sql-results-within-the-query/
Share on other sites

remove from the results...

So I need to select all member.id results (from member table) and then remove all results where primary!='y' and active !='y' from the pictures table.

 

Hope this makes it clearer.

 

Thanks

So what you'd need to do then is just get all of the members, then get all of the pictures where primary != 'y' AND active != y.  So you'll end up with 1 or 0 pictures per member, right? So when getting the pics out, save them in an array using the member's ID as the key. Then when you loop through your members, you can easily check if they have a picture in the array.

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.