Jump to content

JOINs problem


burhankhan

Recommended Posts

Hi:

 

I have two tables as:

 

Members
----------------------------
MEMBER_ID | NAME
-----------------------------
      1            abc
      2            kdjf
      3            kek

GROUP
-------------------------
MEMBER_ID    |  GROUP_ID
-------------------------
      3                   1

 

 

Now i want to fetch records from first table, where members.member_id != groups.members_id

 

I use many types of quires and it is working:

 

SELECT * FROM `members` RIGHT OUTER JOIN `member-group` ON `member-group`.memberid != members.memberid

 

SELECT * FROM `members` WHERE `id` != (SELECT `memberid` FROM `groups`)

 

Also left join working...

 

 

But when second table "GROUP" is empty, then no query is working. It fetch ZERO records.

 

What is its solution?

 

 

 

Link to comment
https://forums.phpfreaks.com/topic/50229-joins-problem/
Share on other sites

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.